Changeset 40975f8 in sasview for src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
- Timestamp:
- Sep 7, 2018 3:24:34 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:
- d6c4987
- Parents:
- 66d4370
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r66d4370 r40975f8 2346 2346 2347 2347 # Create plots for intermediate product data 2348 pq_data, sq_data = self.logic.new1DProductPlots(return_data, self.tab_id) 2349 if pq_data is not None: 2350 pq_data.symbol = "Line" 2351 self.createNewIndex(pq_data) 2352 # self.communicate.plotUpdateSignal.emit([pq_data]) 2353 new_plots.append(pq_data) 2354 if sq_data is not None: 2355 sq_data.symbol = "Line" 2356 self.createNewIndex(sq_data) 2357 # self.communicate.plotUpdateSignal.emit([sq_data]) 2358 new_plots.append(sq_data) 2348 plots = self.logic.new1DProductPlots(return_data, self.tab_id) 2349 for plot in plots: 2350 plot.symbol = "Line" 2351 self.createNewIndex(plot) 2352 new_plots.append(plot) 2359 2353 2360 2354 # Update/generate plots
Note: See TracChangeset
for help on using the changeset viewer.