Changeset 2b39fea in sasview for src/sas/qtgui/MainWindow/GuiManager.py
- Timestamp:
- Jun 14, 2018 5:42:45 AM (6 years ago)
- Branches:
- ESS_GUI, 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:
- 2ad636b1
- Parents:
- f00d3fd
- git-author:
- Piotr Rozyczko <rozyczko@…> (06/14/18 05:40:17)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (06/14/18 05:42:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
rfe76fba r2b39fea 777 777 Arranges all the child windows in a cascade pattern. 778 778 """ 779 self._workspace.workspace.cascade ()779 self._workspace.workspace.cascadeSubWindows() 780 780 781 781 def actionTile(self): … … 783 783 Tile workspace windows 784 784 """ 785 self._workspace.workspace.tile ()785 self._workspace.workspace.tileSubWindows() 786 786 787 787 def actionArrange_Icons(self): … … 795 795 Gives the input focus to the next window in the list of child windows. 796 796 """ 797 self._workspace.workspace.activateNext Window()797 self._workspace.workspace.activateNextSubWindow() 798 798 799 799 def actionPrevious(self): … … 801 801 Gives the input focus to the previous window in the list of child windows. 802 802 """ 803 self._workspace.workspace.activatePrevious Window()803 self._workspace.workspace.activatePreviousSubWindow() 804 804 805 805 #============ HELP =================
Note: See TracChangeset
for help on using the changeset viewer.