Changes in src/sas/qtgui/MainWindow/GuiManager.py [c889a3e:fa05c6c1] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
rc889a3e rfa05c6c1 65 65 # Add signal callbacks 66 66 self.addCallbacks() 67 68 # Assure model categories are available69 self.addCategories()70 67 71 68 # Create the data manager … … 145 142 self.ResolutionCalculator = ResolutionCalculatorPanel(self) 146 143 self.DataOperation = DataOperationUtilityPanel(self) 147 148 def addCategories(self):149 """150 Make sure categories.json exists and if not compile it and install in ~/.sasview151 """152 try:153 from sas.sascalc.fit.models import ModelManager154 from sas.qtgui.Utilities.CategoryInstaller import CategoryInstaller155 model_list = ModelManager().cat_model_list()156 CategoryInstaller.check_install(model_list=model_list)157 except Exception:158 logger.error("%s: could not load SasView models")159 logger.error(traceback.format_exc())160 144 161 145 def statusBarSetup(self):
Note: See TracChangeset
for help on using the changeset viewer.