Changeset b9ab979 in sasview for src/sas/qtgui/Plotting
- Timestamp:
- Nov 6, 2018 5:17:08 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 1942f63
- Parents:
- a0ad146
- Location:
- src/sas/qtgui/Plotting
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Plotter2D.py
ra0ad146 rb9ab979 288 288 self.manager.communicator.plotUpdateSignal.emit([new_plot]) 289 289 290 self.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot]) 291 292 # Show the plot 293 290 294 def setSlicer(self, slicer): 291 295 """ -
src/sas/qtgui/Plotting/Slicers/AnnulusSlicer.py
r63467b6 rb9ab979 148 148 GuiUtils.updateModelItemWithPlot(item, new_plot, new_plot.id) 149 149 self.base.manager.communicator.plotUpdateSignal.emit([new_plot]) 150 self.base.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot]) 150 151 151 152 if self.update_model: -
src/sas/qtgui/Plotting/Slicers/BoxSlicer.py
r63467b6 rb9ab979 188 188 new_plot.id = (self.averager.__name__) + self.base.data.name 189 189 new_plot.is_data = True 190 item = self._item 190 191 if self._item.parent() is not None: 191 192 item = self._item.parent() 192 193 GuiUtils.updateModelItemWithPlot(item, new_plot, new_plot.id) 194 self.base.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot]) 193 195 194 196 if self.update_model: -
src/sas/qtgui/Plotting/Slicers/SectorSlicer.py
r63467b6 rb9ab979 167 167 new_plot.id = "SectorQ" + self.base.data.name 168 168 new_plot.is_data = True 169 item = self._item 169 170 if self._item.parent() is not None: 170 171 item = self._item.parent() … … 172 173 173 174 self.base.manager.communicator.plotUpdateSignal.emit([new_plot]) 175 self.base.manager.communicator.forcePlotDisplaySignal.emit([item, new_plot]) 174 176 175 177 if self.update_model:
Note: See TracChangeset
for help on using the changeset viewer.