Changeset b39debba in sasview for src/sas/sasgui/guiframe
- Timestamp:
- Jan 2, 2017 3:10:13 AM (8 years ago)
- Children:
- 25594ca
- Parents:
- 6c6aa83 (diff), c1681ea (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/sasgui/guiframe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/gui_manager.py
r62243ae rb39debba 1995 1995 wx.PostEvent(self, 1996 1996 StatusEvent(status="Completed saving.")) 1997 except :1997 except Exception: 1998 1998 msg = "Error occurred while saving: " 1999 msg += traceback.format_exc() 1999 2000 msg += "To save, the application panel should have a data set.." 2000 2001 wx.PostEvent(self, StatusEvent(status=msg)) … … 2045 2046 logging.warning(msg) 2046 2047 wx.PostEvent(self, StatusEvent(status=msg, info="error")) 2047 except :2048 except Exception: 2048 2049 msg = "Error occurred while saving: " 2050 msg += traceback.format_exc() 2049 2051 msg += "To save, at least one application panel " 2050 2052 msg += "should have a data set.." -
src/sas/sasgui/guiframe/startup_configuration.py
rd85c194 r62243ae 31 31 'CLEANUP_PLOT':False, 32 32 'DEFAULT_PERSPECTIVE':'Fitting', 33 'DEFAULT_OPEN_FOLDER': None} 33 'DEFAULT_OPEN_FOLDER': None, 34 'SAS_OPENCL': None} 34 35 try: 35 36 CURRENT_STRINGS = {'GUIFRAME_WIDTH':CURRENT.GUIFRAME_WIDTH, … … 45 46 'CLEANUP_PLOT':CURRENT.CLEANUP_PLOT, 46 47 'DEFAULT_PERSPECTIVE':CURRENT.DEFAULT_PERSPECTIVE, 47 'DEFAULT_OPEN_FOLDER':CURRENT.DEFAULT_OPEN_FOLDER} 48 'DEFAULT_OPEN_FOLDER':CURRENT.DEFAULT_OPEN_FOLDER, 49 'SAS_OPENCL': None} 48 50 except: 49 51 CURRENT_STRINGS = DEFAULT_STRINGS
Note: See TracChangeset
for help on using the changeset viewer.