Ignore:
Timestamp:
Jun 14, 2018 3:42:45 AM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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 03:40:17)
git-committer:
Piotr Rozyczko <rozyczko@…> (06/14/18 03:42:45)
Message:

Missed QWorkspace → QMdiArea method renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/GuiManager.py

    rfe76fba r2b39fea  
    777777        Arranges all the child windows in a cascade pattern. 
    778778        """ 
    779         self._workspace.workspace.cascade() 
     779        self._workspace.workspace.cascadeSubWindows() 
    780780 
    781781    def actionTile(self): 
     
    783783        Tile workspace windows 
    784784        """ 
    785         self._workspace.workspace.tile() 
     785        self._workspace.workspace.tileSubWindows() 
    786786 
    787787    def actionArrange_Icons(self): 
     
    795795        Gives the input focus to the next window in the list of child windows. 
    796796        """ 
    797         self._workspace.workspace.activateNextWindow() 
     797        self._workspace.workspace.activateNextSubWindow() 
    798798 
    799799    def actionPrevious(self): 
     
    801801        Gives the input focus to the previous window in the list of child windows. 
    802802        """ 
    803         self._workspace.workspace.activatePreviousWindow() 
     803        self._workspace.workspace.activatePreviousSubWindow() 
    804804 
    805805    #============ HELP ================= 
Note: See TracChangeset for help on using the changeset viewer.