Changeset 2b39fea in sasview for src/sas/qtgui/MainWindow
- 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)
- Location:
- src/sas/qtgui/MainWindow
- Files:
-
- 2 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 ================= -
src/sas/qtgui/MainWindow/UI/MainWindowUI.ui
rd3ee425 r2b39fea 8 8 <y>0</y> 9 9 <width>915</width> 10 <height> 762</height>10 <height>607</height> 11 11 </rect> 12 12 </property> … … 118 118 <addaction name="actionTile"/> 119 119 <addaction name="separator"/> 120 <addaction name="actionArrange_Icons"/>121 120 <addaction name="actionNext"/> 122 121 <addaction name="actionPrevious"/>
Note: See TracChangeset
for help on using the changeset viewer.