From c91723516eb3a32db1af6bd961f19a355d26194f Mon Sep 17 00:00:00 2001 From: blitzman Date: Mon, 2 Jan 2017 23:54:06 -0500 Subject: [PATCH] Do not calculate projected fits for command fits (see #931) --- eos/saveddata/fit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/saveddata/fit.py b/eos/saveddata/fit.py index 08a9f49c3..4637601a2 100644 --- a/eos/saveddata/fit.py +++ b/eos/saveddata/fit.py @@ -782,7 +782,7 @@ class Fit(object): self.__calculated = True # Only apply projected fits if fit it not projected itself. - if not projected: + if not projected and not withBoosters: for fit in self.projectedFits: if fit.getProjectionInfo(self.ID).active: fit.calculateModifiedAttributes(self, withBoosters=withBoosters, dirtyStorage=dirtyStorage)