mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Fix r15383 on Mac.
git-svn-id: http://svn.osgeo.org/qgis/trunk@15387 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
80dcd7b5f8
commit
dce9d141ec
@ -807,17 +807,15 @@ void QgisApp::createActions()
|
||||
// Window Menu Items
|
||||
|
||||
mActionWindowMinimize = new QAction( tr( "Minimize" ), this );
|
||||
shortcuts->registerAction( mActionWindowMinimize, tr( "Ctrl+M", "Minimize Window" ) );
|
||||
mActionWindowMinimize->setShortcut( tr( "Ctrl+M", "Minimize Window" ) );
|
||||
mActionWindowMinimize->setStatusTip( tr( "Minimizes the active window to the dock" ) );
|
||||
connect( mActionWindowMinimize, SIGNAL( triggered() ), this, SLOT( showActiveWindowMinimized() ) );
|
||||
|
||||
mActionWindowZoom = new QAction( tr( "Zoom" ), this );
|
||||
shortcuts->registerAction( mActionWindowZoom );
|
||||
mActionWindowZoom->setStatusTip( tr( "Toggles between a predefined size and the window size set by the user" ) );
|
||||
connect( mActionWindowZoom, SIGNAL( triggered() ), this, SLOT( toggleActiveWindowMaximized() ) );
|
||||
|
||||
mActionWindowAllToFront = new QAction( tr( "Bring All to Front" ), this );
|
||||
shortcuts->registerAction( mActionWindowAllToFront );
|
||||
mActionWindowAllToFront->setStatusTip( tr( "Bring forward all open windows" ) );
|
||||
connect( mActionWindowAllToFront, SIGNAL( triggered() ), this, SLOT( bringAllToFront() ) );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user