From e916300a6e99bc44eae5f0e96795fe698f27401b Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 19 Jul 2007 13:07:52 +0000 Subject: [PATCH] - Improved keyboard shortcuts --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index d4541d8d1..d4e75c25f 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -270,7 +270,7 @@ void GUI::createKeyboardShortcuts(){ connect(switchDownShortcut, SIGNAL(activated()), this, SLOT(displayDownTab())); switchUpShortcut = new QShortcut(QKeySequence(tr("Alt+2", "shortcut to switch to second tab")), this); connect(switchUpShortcut, SIGNAL(activated()), this, SLOT(displayUpTab())); - switchSearchShortcut = new QShortcut(QKeySequence(tr("Alt+3", "shortcut to switch to third tab")), this); + switchSearchShortcut = new QShortcut(QKeySequence(tr("Alt+3, Ctrl+F", "shortcut to switch to third tab (search)")), this); connect(switchSearchShortcut, SIGNAL(activated()), this, SLOT(displaySearchTab())); switchRSSShortcut = new QShortcut(QKeySequence(tr("Alt+4", "shortcut to switch to fourth tab")), this); connect(switchRSSShortcut, SIGNAL(activated()), this, SLOT(displayRSSTab()));