Changeset 7022fdc in sasview for sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter1D.py
- Timestamp:
- Sep 1, 2011 3:01:38 PM (13 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 49ad00b
- Parents:
- 857d00f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter1D.py
r857d00f r7022fdc 159 159 self.graph.reset() 160 160 self.plots = {} 161 if self.is_zoomed: 162 self.is_zoomed = False 161 163 162 164 def _OnReSize(self, event): … … 239 241 ## Set the view scale for all plots 240 242 self._onEVT_FUNC_PROPERTY() 241 # Recover the x,y limits 242 self.subplot.set_xlim((xlo, xhi)) 243 self.subplot.set_ylim((ylo, yhi)) 243 # Check if zoomed 244 toolbar_zoomed = self.toolbar.GetToolEnabled(self.toolbar._NTB2_BACK) 245 if self.is_zoomed or toolbar_zoomed: 246 # Recover the x,y limits 247 self.subplot.set_xlim((xlo, xhi)) 248 self.subplot.set_ylim((ylo, yhi)) 244 249 else: 245 250 self.plots[data.id] = data … … 248 253 self._onEVT_FUNC_PROPERTY() 249 254 self.toolbar.update() 255 if self.is_zoomed: 256 self.is_zoomed = False 250 257 251 258
Note: See TracChangeset
for help on using the changeset viewer.