From: Shaun Reich Date: Sat, 7 Feb 2009 04:47:04 +0000 (+0000) Subject: Changed the order of the shortcut for opening a new tab from Ctrl+Shift+N to Ctrl... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/eb9dd90419cc00ed667512ba94d63a4f16e9c675 Changed the order of the shortcut for opening a new tab from Ctrl+Shift+N to Ctrl+T, so the latter is now the default, and is shown like that. It now shows up like the other items in the file menu. (it doesn't have a shift key modifier in it). svn path=/trunk/KDE/kdebase/apps/; revision=922452 --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 92c0cfc80..b41561b28 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1004,7 +1004,7 @@ void DolphinMainWindow::setupActions() KAction* newTab = actionCollection()->addAction("new_tab"); newTab->setIcon(KIcon("tab-new")); newTab->setText(i18nc("@action:inmenu File", "New Tab")); - newTab->setShortcut(KShortcut(Qt::CTRL | Qt::SHIFT | Qt::Key_N, Qt::CTRL | Qt::Key_T)); + newTab->setShortcut(KShortcut(Qt::CTRL | Qt::Key_T, Qt::CTRL | Qt::SHIFT | Qt::Key_N)); connect(newTab, SIGNAL(triggered()), this, SLOT(openNewTab())); QAction* closeTab = actionCollection()->addAction("close_tab");