Changeset 9d8f193 in sasview


Ignore:
Timestamp:
May 18, 2011 12:33:48 PM (14 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:
4084673
Parents:
7922bb1
Message:

minor fix on Setting View

Location:
guiframe
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • guiframe/gui_manager.py

    r62b276c r9d8f193  
    911911                wx.EVT_MENU(self, id, item.help) 
    912912        if config._do_aboutbox: 
     913            self._help_menu.AppendSeparator() 
    913914            id = wx.NewId() 
    914915            self._help_menu.Append(id,'&About', 'Software information') 
     
    12551256                self._mgr.GetPane(self.panels[id].window_name).IsShown() 
    12561257                self._mgr.GetPane(self.panels[id].window_name).Hide() 
    1257         style = self.__gui_style & GUIFRAME.TOOLBAR_ON 
    1258         if (style == GUIFRAME.TOOLBAR_ON) & (self._toolbar.IsShown()): 
    1259             #    self._toolbar.Show(True) 
    1260             self._on_toggle_toolbar() 
     1258        #style = self.__gui_style & GUIFRAME.TOOLBAR_ON 
     1259        #if (style == GUIFRAME.TOOLBAR_ON) & (self._toolbar.IsShown()): 
     1260        #    #    self._toolbar.Show(True) 
     1261        #    self._on_toggle_toolbar() 
    12611262 
    12621263        self._mgr.Update() 
  • guiframe/startup_configuration.py

    radf44c2 r9d8f193  
    5656        panel = wx.Panel(self, -1) 
    5757        vbox = wx.BoxSizer(wx.VERTICAL) 
    58         wx.StaticBox(panel, -1, 'Change Configuration', (5, 5), 
     58        wx.StaticBox(panel, -1, 'Set View-Configuration', (5, 5), 
    5959                      (PANEL_WIDTH*0.94, PANEL_HEIGHT*0.7)) 
    6060        default_bt = wx.RadioButton(panel, -1, 'Default View', (15, 30),  
     
    6565        current_bt.SetValue(False) 
    6666        current_bt.Bind(wx.EVT_RADIOBUTTON, self.OnCurrent) 
    67         msg = "\nThis new configuration will take effect on\n" 
     67        msg = "\nThis new configuration will take effect after\n" 
    6868        msg += "restarting this application..." 
    6969        note_txt = wx.StaticText(panel, -1, msg, (15, 75)) 
Note: See TracChangeset for help on using the changeset viewer.