diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-07 20:23:32 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-07 20:23:32 +0200 |
commit | f861745be0039908096d974f7c70681cd7cbe5e9 (patch) | |
tree | fe0a867672939fc66cf6f32a0568c6e9a66d875c | |
parent | tools actions (diff) | |
download | rekonq-f861745be0039908096d974f7c70681cd7cbe5e9.tar.xz |
Added CTRL + N shortcut to open new tab action. As new window doesn't exist anymore..
-rw-r--r-- | src/mainwindow.cpp | 2 |
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())); |