Changeset 8353d90 in sasview for src/sas/qtgui/MainWindow/GuiManager.py
- Timestamp:
- Dec 13, 2017 6:14:23 AM (7 years ago)
- Branches:
- 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
- Children:
- e90988c
- Parents:
- 9387fe3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
rd1955d67 r8353d90 86 86 # Set up the status bar 87 87 self.statusBarSetup() 88 # Show the Welcome panel89 self.welcomePanel = WelcomePanel()90 self._workspace.workspace.addSubWindow(self.welcomePanel)91 88 92 89 # Current help file … … 99 96 "_downloads", 100 97 "Tutorial.pdf")) 98 101 99 def addWidgets(self): 102 100 """ … … 131 129 self.ackWidget = Acknowledgements() 132 130 self.aboutWidget = AboutBox() 131 self.welcomePanel = WelcomePanel() 133 132 134 133 # Add calculators - floating for usability … … 334 333 msg += " Please try again later." 335 334 self.communicate.statusBarUpdateSignal.emit(msg) 335 336 def showWelcomeMessage(self): 337 """ Show the Welcome panel """ 338 self._workspace.workspace.addSubWindow(self.welcomePanel) 339 self.welcomePanel.show() 336 340 337 341 def addCallbacks(self):
Note: See TracChangeset
for help on using the changeset viewer.