Changeset 158a0c7 in sasview for src/sas/qtgui/MainWindow
- Timestamp:
- Jul 13, 2018 2:24:30 AM (6 years ago)
- Children:
- 41d6187
- Parents:
- 5dba493 (diff), ecbfddd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/qtgui/MainWindow
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rd9150d8 r6ff103a 496 496 # Now query the model item for available plots 497 497 plots = GuiUtils.plotsFromFilename(filename, model) 498 item = GuiUtils.itemFromFilename(filename, model)499 498 500 499 new_plots = [] 501 for plot in plots:500 for item, plot in plots.items(): 502 501 plot_id = plot.id 503 502 if plot_id in list(self.active_plots.keys()): -
src/sas/qtgui/MainWindow/MainWindow.py
ra3221b6 r5dba493 10 10 from sas.qtgui.UI import main_resources_rc 11 11 from .UI.MainWindowUI import Ui_MainWindow 12 13 # Initialize logging14 import sas.qtgui.Utilities.SasviewLogger15 12 16 13 class MainSasViewWindow(QMainWindow, Ui_MainWindow):
Note: See TracChangeset
for help on using the changeset viewer.