Changeset 7022fdc in sasview for sansguiframe/src
- 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
- Location:
- sansguiframe/src/sans/guiframe/local_perspectives/plotting
- Files:
-
- 2 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 -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter2D.py
r857d00f r7022fdc 229 229 self.default_zmin_ctl = self.zmin_2D 230 230 self.default_zmax_ctl = self.zmax_2D 231 # Check if zoomed 232 toolbar_zoomed = self.toolbar.GetToolEnabled(self.toolbar._NTB2_BACK) 233 if not self.is_zoomed and not toolbar_zoomed: 234 return 235 231 236 # Recover the x,y limits 232 237 if (xlo and xhi and ylo and yhi) != None: … … 237 242 else: 238 243 self.toolbar.update() 244 self._is_zoomed = False 245 239 246 def _set_axis_labels(self): 240 247 """
Note: See TracChangeset
for help on using the changeset viewer.