diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 1ab59e2d..63de9853 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -284,10 +284,7 @@ void MainWindow::setupActions()      // =================== Tab Actions      a = new KAction(KIcon("tab-new"), i18n("New &Tab"), this); -    QList<QKeySequence> newTabShortcutList; -    newTabShortcutList << QKeySequence(QKeySequence::New); -    newTabShortcutList << QKeySequence(QKeySequence::AddTab); -    a->setShortcut(KShortcut(newTabShortcutList)); +    a->setShortcut(KShortcut(Qt::CTRL + Qt::Key_T, Qt::CTRL + Qt::Key_N));      actionCollection()->addAction(QLatin1String("new_tab"), a);      connect(a, SIGNAL(triggered(bool)), m_view, SLOT(newWebView())); | 
