]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Changed the order of the shortcut for opening a new tab from Ctrl+Shift+N to Ctrl...
authorShaun Reich <shaun.reich@kdemail.net>
Sat, 7 Feb 2009 04:47:04 +0000 (04:47 +0000)
committerShaun Reich <shaun.reich@kdemail.net>
Sat, 7 Feb 2009 04:47:04 +0000 (04:47 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=922452

src/dolphinmainwindow.cpp

index 92c0cfc80a5051dd91d80f1fde7dc34c38b27a62..b41561b28f5030c226a8f56940d2741184acff18 100644 (file)
@@ -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");