export to grace uses current set order
This commit is contained in:
parent
091677991b
commit
a61dc40343
@ -111,15 +111,16 @@ class QGraphWindow(QtWidgets.QGraphicsView, Ui_GraphWindow):
|
||||
return len(self.active)
|
||||
|
||||
def curves(self) -> tuple:
|
||||
for a in self.active:
|
||||
if self.real_button.isChecked():
|
||||
if self.error_plots[a] is not None:
|
||||
yield self.real_plots[a], self.error_plots[a]
|
||||
else:
|
||||
yield self.real_plots[a],
|
||||
for set_id in self.sets:
|
||||
if set_id in self.active:
|
||||
if self.real_button.isChecked():
|
||||
if self.error_plots[set_id] is not None:
|
||||
yield self.real_plots[set_id], self.error_plots[set_id]
|
||||
else:
|
||||
yield self.real_plots[set_id],
|
||||
|
||||
if self.imag_button.isChecked() and self.imag_plots[a] is not None:
|
||||
yield self.imag_plots[a],
|
||||
if self.imag_button.isChecked() and self.imag_plots[set_id] is not None:
|
||||
yield self.imag_plots[set_id],
|
||||
|
||||
@property
|
||||
def title(self):
|
||||
|
Loading…
Reference in New Issue
Block a user