Changeset 1959
- Timestamp:
- Aug 24, 2015 2:49:27 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r1956 r1959 3665 3665 if '2.7' not in sys.version[:5]: 3666 3666 dlg = wx.MessageDialog(None, 3667 'GSAS-II requires Python 2.7.x\n Yours is '+sys.version [:5],3667 'GSAS-II requires Python 2.7.x\n Yours is '+sys.version.split()[0], 3668 3668 'Python version error', wx.OK) 3669 3669 try: … … 3707 3707 # print versions 3708 3708 print "Python module versions loaded:" 3709 print "python: ",sys.version [:5]3709 print "python: ",sys.version.split()[0] 3710 3710 print "wxpython: ",wx.__version__ 3711 3711 print "matplotlib: ",mpl.__version__ -
trunk/GSASIIpwdGUI.py
r1955 r1959 1997 1997 '''Called when the histogram type is changed to refresh the window 1998 1998 ''' 1999 wx.CallAfter(UpdateSampleGrid,G2frame,data) 1999 #wx.CallAfter(UpdateSampleGrid,G2frame,data) 2000 wx.CallLater(100,UpdateSampleGrid,G2frame,data) 2000 2001 2001 2002 def SetNameVal():
Note: See TracChangeset
for help on using the changeset viewer.