Changeset 8e674ccf in sasview for src/sas/qtgui/MainWindow/DataExplorer.py
- Timestamp:
- Sep 9, 2018 2:45:08 AM (6 years ago)
- Children:
- 60a4e71
- Parents:
- c71b20a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rc71b20a r8e674ccf 575 575 new_plots = dict(int = [], res = [], pd = []) 576 576 for item, plot in plots.items(): 577 if self.updatePlot(plot) and filename != plot.name:577 if (self.updatePlot(plot) and filename != plot.name) or plot.hidden: 578 578 continue 579 579 # Don't plot intermediate results, e.g. P(Q), S(Q) … … 583 583 if match and match.groups()[1] != None: 584 584 continue 585 # Don't include plots from different fitpages, but always include the original data 585 # Don't include plots from different fitpages, 586 # but always include the original data 586 587 if fitpage_name in plot.name or filename == plot.name: 587 588 # 'sophisticated' test to generate standalone plot for residuals
Note: See TracChangeset
for help on using the changeset viewer.