Changeset 493c90c in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Dec 17, 2011 1:05:09 PM (13 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:
- 74b5523
- Parents:
- 5247084
- Location:
- sansguiframe/src/sans/guiframe
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/gui_manager.py
r4bab790 r493c90c 77 77 import sans.guiframe.config as config 78 78 79 80 custom_config = _find_local_config('custom_config', PATH_APP) 79 from sans.guiframe.customdir import SetupCustom 80 c_conf_dir = SetupCustom().setup_dir(PATH_APP) 81 custom_config = _find_local_config('custom_config', c_conf_dir) 81 82 if custom_config is None: 82 83 custom_config = _find_local_config('custom_config', os.getcwd()) -
sansguiframe/src/sans/guiframe/startup_configuration.py
rc994f8f r493c90c 17 17 from sans.guiframe.gui_style import GUIFRAME 18 18 from sans.guiframe import gui_manager as CURRENT 19 from sans.guiframe.customdir import SetupCustom 19 20 # default configuration 20 21 DEFAULT_STRINGS = {'GUIFRAME_WIDTH':1150, … … 65 66 # parent 66 67 self.parent = parent 67 self.path = parent.path68 self.path = SetupCustom().find_dir() 68 69 self._gui = gui 69 70 # font size
Note: See TracChangeset
for help on using the changeset viewer.