Changeset 2019
- Timestamp:
- Oct 20, 2015 1:45:54 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r2016 r2019 1110 1110 self.ImageEdit.Append(help='Load image controls from file', 1111 1111 id=wxID_IMLOADCONTROLS, kind=wx.ITEM_NORMAL,text='Load Controls') 1112 try: # remove after AutoInt is completed1112 if GSASIIpath.GetConfigValue('debug'): 1113 1113 import autoint 1114 1114 self.ImageEdit.Append(help='Open Auto-integration window to integrate a series of images', 1115 1115 id=wxID_IMAUTOINTEG, kind=wx.ITEM_NORMAL,text='Auto Integrate') 1116 print "development code: AutoInt found"1117 except ImportError:1118 pass1119 1116 self.PostfillDataMenu() 1120 1117 -
trunk/GSASIIimgGUI.py
r1994 r2019 1053 1053 G2frame.dataFrame.Bind(wx.EVT_MENU, OnSaveControls, id=G2gd.wxID_IMSAVECONTROLS) 1054 1054 G2frame.dataFrame.Bind(wx.EVT_MENU, OnLoadControls, id=G2gd.wxID_IMLOADCONTROLS) 1055 try: # remove after AutoInt is completed1055 if GSASIIpath.GetConfigValue('debug'): 1056 1056 import autoint 1057 1057 def OnAutoInt(event): 1058 1058 frame = autoint.AutoIntFrame(G2frame,PollTime=5.0) 1059 1060 1059 G2frame.dataFrame.Bind(wx.EVT_MENU, OnAutoInt, id=G2gd.wxID_IMAUTOINTEG) 1061 print "development code: AutoInt found"1062 except ImportError:1063 pass1064 1060 G2frame.dataDisplay = wx.Panel(G2frame.dataFrame) 1065 1061
Note: See TracChangeset
for help on using the changeset viewer.