Changeset 116260a in sasview
- Timestamp:
- Apr 3, 2017 4:04:26 AM (8 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- f182f93
- Parents:
- 9f25bce
- Location:
- src/sas
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotter2D.py
r9f25bce r116260a 49 49 self.vmin = None 50 50 self.vmax = None 51 52 self.manager = manager 51 53 52 54 @property … … 277 279 variant_plot = QtCore.QVariant(new_plot) 278 280 GuiUtils.updateModelItemWithPlot(self._item, variant_plot, new_plot.id) 281 self.manager.communicator.plotUpdateSignal.emit([new_plot]) 279 282 280 283 def setSlicer(self, slicer): -
src/sas/sasgui/guiframe/local_perspectives/plotting/AnnulusSlicer.py
r161713c r116260a 149 149 variant_plot = QtCore.QVariant(new_plot) 150 150 GuiUtils.updateModelItemWithPlot(self._item, variant_plot, new_plot.id) 151 self.base.manager.communicator.plotUpdateSignal.emit([new_plot]) 151 152 152 153 if self.update_model: -
src/sas/sasgui/guiframe/local_perspectives/plotting/SectorSlicer.py
r161713c r116260a 171 171 variant_plot = QtCore.QVariant(new_plot) 172 172 GuiUtils.updateModelItemWithPlot(self._item, variant_plot, new_plot.id) 173 self.base.manager.communicator.plotUpdateSignal.emit([new_plot]) 173 174 174 175 if self.update_model:
Note: See TracChangeset
for help on using the changeset viewer.