Changeset 4389 for trunk/GSASIIdataGUI.py
- Timestamp:
- Apr 2, 2020 1:44:42 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r4379 r4389 391 391 392 392 ############################################################################### 393 # GUI creation393 #### GUI creation 394 394 ############################################################################### 395 395 def GSASIImain(application): … … 441 441 442 442 ################################################################################ 443 # Create main frame (window) for GUI443 #### Create main frame (window) for GUI 444 444 ################################################################################ 445 445 class GSASII(wx.Frame): … … 599 599 if seqSetting: 600 600 for item in self.Refine: 601 item.Set Text('Se&quential refine\tCtrl+R')601 item.SetItemLabel('Se&quential refine\tCtrl+R') #might fail on old wx 602 602 seqMode = True 603 603 else: 604 604 for item in self.Refine: 605 item.Set Text('&Refine\tCtrl+R')605 item.SetItemLabel('&Refine\tCtrl+R') #might fail on old wx 606 606 seqMode = False 607 607 for menu,Id in self.ExportSeq: … … 5835 5835 5836 5836 #Phase / fullrmc & RMCprofile (Reverse Monte Carlo method) tab 5837 G2G.Define_wxId('wxID_SETUPRMC','wxID_ LOADRMC','wxID_SAVERMC','wxID_RUNRMC','wxID_VIEWRMC' )5837 G2G.Define_wxId('wxID_SETUPRMC','wxID_RUNRMC','wxID_VIEWRMC' ) 5838 5838 self.FRMCMenu = wx.MenuBar() 5839 5839 self.PrefillDataMenu(self.FRMCMenu) … … 5842 5842 self.FRMCMenu.Append(menu=self.FRMCDataEdit, title='Operations') 5843 5843 self.FRMCDataEdit.Append(G2G.wxID_SETUPRMC,'Setup RMC','Setup new fullrmc or RMCprofile file') 5844 self.FRMCDataEdit.Append(G2G.wxID_LOADRMC,'Load','Load fullrmc or RMCprofile file')5845 self.FRMCDataEdit.Append(G2G.wxID_SAVERMC,'Save','Save fullrmc or RMCprofile file')5846 5844 self.FRMCDataEdit.Append(G2G.wxID_RUNRMC,'Execute','Run fullrmc or RMCprofile file') 5847 5845 self.FRMCDataEdit.Append(G2G.wxID_VIEWRMC,'View','View fullrmc or RMCprofile results')
Note: See TracChangeset
for help on using the changeset viewer.