Changeset 53a6d09 in sasview


Ignore:
Timestamp:
Apr 24, 2012 12:05:33 PM (12 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:
278b995
Parents:
2778c4f
Message:

fixed the graph menu tip on remove

File:
1 edited

Legend:

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

    rd6e39a8e r53a6d09  
    223223            if id in theory_list.keys(): 
    224224                data = theory_list[id] 
    225              
     225            # Update Graph menu and help string         
     226            h_id = self.parent._window_menu.FindItem(self.window_caption) 
     227            helpString = self.parent._window_menu.GetHelpString(h_id)  
     228            d_string = (' ' + str(data.label) +';') 
     229            new_tip = helpString.replace(d_string, '') 
     230            self.parent._window_menu.SetHelpString(h_id, new_tip)   
     231 
    226232            del self.plots[id] 
    227233            self.graph.render(self) 
     
    230236                #onRemove: graph is empty must be the panel must be destroyed 
    231237                self.parent.delete_panel(self.uid) 
    232  
     238             
    233239         
    234240    def plot_data(self, data): 
Note: See TracChangeset for help on using the changeset viewer.