Re-enable DPS graph and make few fixes

This commit is contained in:
DarkPhoenix
2019-06-28 10:13:03 +03:00
parent 66ff4d827c
commit c2017f3cb9
3 changed files with 3 additions and 4 deletions

View File

@@ -206,7 +206,7 @@ class GraphFrame(wx.Frame):
fits = self.ctrlPanel.fits
if view.hasTargets:
targets = self.ctrlPanel.targets
iterList = tuple(itertools.combinations(fits, targets))
iterList = tuple(itertools.product(fits, targets))
else:
iterList = tuple((f, None) for f in fits)
for fit, target in iterList: