Changeset 9d8f193 in sasview
- Timestamp:
- May 18, 2011 12:33:48 PM (14 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:
- 4084673
- Parents:
- 7922bb1
- Location:
- guiframe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/gui_manager.py
r62b276c r9d8f193 911 911 wx.EVT_MENU(self, id, item.help) 912 912 if config._do_aboutbox: 913 self._help_menu.AppendSeparator() 913 914 id = wx.NewId() 914 915 self._help_menu.Append(id,'&About', 'Software information') … … 1255 1256 self._mgr.GetPane(self.panels[id].window_name).IsShown() 1256 1257 self._mgr.GetPane(self.panels[id].window_name).Hide() 1257 style = self.__gui_style & GUIFRAME.TOOLBAR_ON1258 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() 1261 1262 1262 1263 self._mgr.Update() -
guiframe/startup_configuration.py
radf44c2 r9d8f193 56 56 panel = wx.Panel(self, -1) 57 57 vbox = wx.BoxSizer(wx.VERTICAL) 58 wx.StaticBox(panel, -1, ' ChangeConfiguration', (5, 5),58 wx.StaticBox(panel, -1, 'Set View-Configuration', (5, 5), 59 59 (PANEL_WIDTH*0.94, PANEL_HEIGHT*0.7)) 60 60 default_bt = wx.RadioButton(panel, -1, 'Default View', (15, 30), … … 65 65 current_bt.SetValue(False) 66 66 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" 68 68 msg += "restarting this application..." 69 69 note_txt = wx.StaticText(panel, -1, msg, (15, 75))
Note: See TracChangeset
for help on using the changeset viewer.