Changeset 7022fdc in sasview


Ignore:
Timestamp:
Sep 1, 2011 3:01:38 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

Not plot remember zoomed range until a new data is set

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  
    159159        self.graph.reset() 
    160160        self.plots      = {} 
     161        if self.is_zoomed: 
     162                self.is_zoomed = False 
    161163         
    162164    def _OnReSize(self, event):    
     
    239241            ## Set the view scale for all plots 
    240242            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))   
    244249        else: 
    245250            self.plots[data.id] = data 
     
    248253            self._onEVT_FUNC_PROPERTY() 
    249254            self.toolbar.update() 
     255            if self.is_zoomed: 
     256                self.is_zoomed = False 
    250257         
    251258           
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter2D.py

    r857d00f r7022fdc  
    229229        self.default_zmin_ctl = self.zmin_2D 
    230230        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         
    231236        # Recover the x,y limits 
    232237        if (xlo and xhi and ylo and yhi) != None: 
     
    237242            else:  
    238243                self.toolbar.update() 
     244                self._is_zoomed = False 
     245 
    239246    def _set_axis_labels(self): 
    240247        """ 
Note: See TracChangeset for help on using the changeset viewer.