Skip to content

Commit f56dc70

Browse files
author
gsherman
committed
GUI shortcut patch from lubaby (ticket #501)
git-svn-id: http://svn.osgeo.org/qgis/trunk@6346 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c226ee1 commit f56dc70

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/gui/qgisapp.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -599,13 +599,13 @@ void QgisApp::createActions()
599599
connect(mActionShowBookmarks, SIGNAL(triggered()), this, SLOT(showBookmarks()));
600600
//
601601
mActionShowAllToolbars = new QAction(tr("Show most toolbars"), this);
602-
mActionShowAllToolbars->setShortcut(tr("S", "Show most toolbars"));
602+
mActionShowAllToolbars->setShortcut(tr("T", "Show most toolbars"));
603603
mActionShowAllToolbars->setStatusTip(tr("Show most toolbars"));
604604
connect(mActionShowAllToolbars, SIGNAL(triggered()), this,
605605
SLOT(showAllToolbars()));
606606
//
607607
mActionHideAllToolbars = new QAction(tr("Hide most toolbars"), this);
608-
mActionHideAllToolbars->setShortcut(tr("H", "Hide most toolbars"));
608+
mActionHideAllToolbars->setShortcut(tr("Ctrl+T", "Hide most toolbars"));
609609
mActionHideAllToolbars->setStatusTip(tr("Hide most toolbars"));
610610
connect(mActionHideAllToolbars, SIGNAL(triggered()), this,
611611
SLOT(hideAllToolbars()));
@@ -640,7 +640,8 @@ void QgisApp::createActions()
640640
//
641641

642642
mActionStartEditing = new QAction(QIcon(myIconPath+"/mActionStartEditing.png"),
643-
tr("Start editing the current layer"), this);
643+
tr("Start editing the current layer"), this);
644+
mActionStartEditing->setStatusTip(tr("Start editing the current layer"));
644645
connect(mActionStartEditing, SIGNAL(triggered()), this, SLOT(startEditing()));
645646
//
646647
mActionStopEditing = new QAction(QIcon(myIconPath+"/mActionStopEditing.png"),

0 commit comments

Comments
 (0)