Changeset 3d18691 in sasview for src/sas/qtgui/MainWindow/GuiManager.py
- Timestamp:
- Aug 6, 2018 9:37:19 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 060413c
- Parents:
- 97df8a9
- git-author:
- wpotrzebowski <Wojciech.Potrzebowski@…> (10/27/17 04:35:49)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (08/06/18 09:37:19)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
r8e2cd79 r3d18691 27 27 from sas.qtgui.MainWindow.AboutBox import AboutBox 28 28 from sas.qtgui.MainWindow.WelcomePanel import WelcomePanel 29 from sas.qtgui.MainWindow.CategoryManager import CategoryManager 29 30 30 31 from sas.qtgui.MainWindow.DataManager import DataManager … … 134 135 self.ackWidget = Acknowledgements() 135 136 self.aboutWidget = AboutBox() 137 self.categoryManagerWidget = CategoryManager(self._parent, manager=self) 136 138 self.welcomePanel = WelcomePanel() 137 139 self.grid_window = None 138 140 self._workspace.toolBar.setVisible(LocalConfig.TOOLBAR_SHOW) 139 141 self._workspace.actionHide_Toolbar.setText("Show Toolbar") 142 self.categoryManagerWidget = CategoryManager() 140 143 141 144 # Add calculators - floating for usability … … 419 422 self._workspace.actionHide_Toolbar.triggered.connect(self.actionHide_Toolbar) 420 423 self._workspace.actionStartup_Settings.triggered.connect(self.actionStartup_Settings) 421 self._workspace.actionCateg ry_Manager.triggered.connect(self.actionCategry_Manager)424 self._workspace.actionCategory_Manager.triggered.connect(self.actionCategory_Manager) 422 425 # Tools 423 426 self._workspace.actionData_Operation.triggered.connect(self.actionData_Operation) … … 611 614 pass 612 615 613 def actionCategry_Manager(self): 614 """ 615 """ 616 print("actionCategry_Manager TRIGGERED") 617 pass 616 def actionCategory_Manager(self): 617 """ 618 """ 619 self.categoryManagerWidget.show() 618 620 619 621 #============ TOOLS =================
Note: See TracChangeset
for help on using the changeset viewer.