Changeset c35e6901 in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Sep 20, 2012 4:37:53 PM (12 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:
- 4f973f3
- Parents:
- ae4c139
- Location:
- sansguiframe/src/sans/guiframe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/CategoryInstaller.py
rea5fa58 rc35e6901 10 10 11 11 import os 12 import sys 12 13 import shutil 13 14 import cPickle as pickle … … 47 48 returns the dir where default_cat.p should be 48 49 """ 49 from sans import sansview as sasview 50 app_path = os.path.dirname(sasview.__file__) 50 app_path = sys.path[0] 51 51 return app_path 52 52 -
sansguiframe/src/sans/guiframe/gui_manager.py
rdf7a7e3 rc35e6901 1418 1418 1419 1419 def _on_category_manager(self, event): 1420 CategoryManager(self, -1, 'Model Category Manager') 1420 """ 1421 Category manager frame 1422 """ 1423 frame = CategoryManager(self, -1, 'Model Category Manager') 1424 icon = self.GetIcon() 1425 frame.SetIcon(icon) 1421 1426 1422 1427 def _on_preference_menu(self, event):
Note: See TracChangeset
for help on using the changeset viewer.