Changeset dee9e5f in sasview
- Timestamp:
- Sep 19, 2018 7:28:12 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- c1bc9de
- Parents:
- ccd2b87
- Location:
- src/sas/qtgui
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
rfc5d2d7f rdee9e5f 992 992 When setting a perspective, sets up the menu bar 993 993 """ 994 self._workspace.actionReport.setEnabled(False) 994 995 if isinstance(perspective, Perspectives.PERSPECTIVES["Fitting"]): 995 996 self.checkAnalysisOption(self._workspace.actionFitting) … … 1001 1002 self._workspace.menubar.addAction(self._workspace.menuWindow.menuAction()) 1002 1003 self._workspace.menubar.addAction(self._workspace.menuHelp.menuAction()) 1004 self._workspace.actionReport.setEnabled(True) 1003 1005 1004 1006 elif isinstance(perspective, Perspectives.PERSPECTIVES["Invariant"]): -
src/sas/qtgui/Perspectives/Corfunc/CorfuncPerspective.py
r42d79fc rdee9e5f 123 123 # Set up the model. 124 124 self.setup_model() 125 126 #Disable reporting results127 self.parent._workspace.actionReport.setEnabled(False)128 125 129 126 # Set up the mapper -
src/sas/qtgui/Perspectives/Fitting/FittingPerspective.py
r42d79fc rdee9e5f 78 78 79 79 self.updateWindowTitle() 80 81 #Enabling Results reporting82 self.parent._workspace.actionReport.setEnabled(True)83 84 80 85 81 def updateWindowTitle(self): -
src/sas/qtgui/Perspectives/Invariant/InvariantPerspective.py
r42d79fc rdee9e5f 112 112 # Let's choose the Standard Item Model. 113 113 self.model = QtGui.QStandardItemModel(self) 114 115 #Disable reporting results116 self.parent._workspace.actionReport.setEnabled(False)117 114 118 115 # Connect buttons to slots. -
src/sas/qtgui/Perspectives/Inversion/InversionPerspective.py
r42d79fc rdee9e5f 114 114 # Set up the Widget Map 115 115 self.setupMapper() 116 117 #Disable reporting results118 self._parent._workspace.actionReport.setEnabled(False)119 116 120 117 #Hidding calculate all buton
Note: See TracChangeset
for help on using the changeset viewer.