Changeset ebfe223 in sasview
- Timestamp:
- Aug 8, 2018 9:31:28 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- cde0611
- Parents:
- 03e04a4
- Location:
- src/sas/qtgui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rfce6c55 rebfe223 496 496 # Now query the model item for available plots 497 497 plots = GuiUtils.plotsFromFilename(filename, model) 498 ids = [list(self.active_plots.values())[id].data.id for id in range(len(self.active_plots))] 498 499 499 500 new_plots = [] 500 501 for item, plot in plots.items(): 501 502 plot_id = plot.id 502 if plot_id in list(self.active_plots.keys()):503 if plot_id in ids: 503 504 self.active_plots[plot_id].replacePlot(plot_id, plot) 504 505 else: -
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r060413c rebfe223 135 135 self.initializeCategoryCombo() 136 136 137 # Initial control state 138 self.initializeControls() 139 140 QtWidgets.QApplication.processEvents() 141 137 142 # Connect signals to controls 138 143 self.initializeSignals() 139 140 # Initial control state141 self.initializeControls()142 144 143 145 if data is not None: … … 325 327 QTreeView::item { 326 328 border: 1px; 327 padding: 2px 1 5px;329 padding: 2px 1px; 328 330 } 329 331
Note: See TracChangeset
for help on using the changeset viewer.