Changeset 5eede4e in sasview for sansguiframe/src


Ignore:
Timestamp:
Aug 30, 2011 5:13:55 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:
e4a703a
Parents:
9c8f3ad
Message:

cleaned up old comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter1D.py

    rcd61c4d r5eede4e  
    229229        if data.id in self.plots.keys(): 
    230230            #replace except label  
    231             new_data = self.plots[data.id] 
    232             data.label = new_data.label 
    233             data.custom_color = new_data.custom_color 
     231            old_data = self.plots[data.id] 
     232            data.label = old_data.label 
     233            data.custom_color = old_data.custom_color 
    234234            self.graph.replace(data) 
    235235            self.plots[data.id] = data 
     
    237237            self.plots[data.id] = data 
    238238            self.graph.add(self.plots[data.id])  
    239  
     239         
    240240        ## Set the view scale for all plots 
    241241        self._onEVT_FUNC_PROPERTY() 
    242         ## render the graph<=No need this done in canvas 
    243         #self.graph.render(self) 
    244         #self.subplot.figure.canvas.draw_idle() 
    245242     
    246243    def draw_plot(self): 
Note: See TracChangeset for help on using the changeset viewer.