summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-07 20:23:32 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-07 20:23:32 +0200
commitf861745be0039908096d974f7c70681cd7cbe5e9 (patch)
treefe0a867672939fc66cf6f32a0568c6e9a66d875c /src
parenttools actions (diff)
downloadrekonq-f861745be0039908096d974f7c70681cd7cbe5e9.tar.xz
Added CTRL + N shortcut to open new tab action. As new window doesn't exist anymore..
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 8090cb23..dd89d679 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -261,7 +261,7 @@ void MainWindow::setupActions()
// =================== Tab Actions
a = new KAction(KIcon("tab-new"), i18n("New &Tab"), this);
- a->setShortcut(KShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_N, Qt::CTRL + Qt::Key_T));
+ a->setShortcut(KShortcut(Qt::CTRL + Qt::Key_N, Qt::CTRL + Qt::SHIFT + Qt::Key_N, Qt::CTRL + Qt::Key_T));
actionCollection()->addAction(QLatin1String("new_tab"), a);
connect(a, SIGNAL(triggered(bool)), m_view, SLOT(newWebView()));