diff options
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 5a0b2568..dc1dc708 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -402,6 +402,7 @@ void MainWindow::setupActions() // ============================== Indexed Tab Actions ==================================== a = new KAction(KIcon("tab-close"), i18n("&Close Tab"), this); + a->setShortcuts( KStandardShortcut::close() ); actionCollection()->addAction(QL1S("close_tab"), a); connect(a, SIGNAL(triggered(bool)), m_view->tabBar(), SLOT(closeTab())); @@ -1094,13 +1095,6 @@ void MainWindow::keyPressEvent(QKeyEvent *event) return; } - // close current tab action - if ((event->modifiers() == Qt::ControlModifier) && event->key() == Qt::Key_W) - { - m_view->closeTab(m_view->currentIndex()); - return; - } - KMainWindow::keyPressEvent(event); } |