┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-01-10 23:42:34 +0000
committerPeter Penz <[email protected]>2008-01-10 23:42:34 +0000
commit09c62f7c6a4f13659fb87cf2e4e8f23ca4125710 (patch)
treec7e349c16976b02d5b96b51976abb681da601475
parentfd1c05b141264cb4500f32cb343ecacb3d5a662f (diff)
use F3 for "Split View" instead of F10, as F10 is used for "new directory" since KDE 3... (thanks to Aaron for the hint)
svn path=/trunk/KDE/kdebase/apps/; revision=759633
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index e40166e99..2048de1a5 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1159,7 +1159,7 @@ void DolphinMainWindow::setupActions()
connect(showHiddenFiles, SIGNAL(triggered()), this, SLOT(toggleShowHiddenFiles()));
KAction* split = actionCollection()->addAction("split_view");
- split->setShortcut(Qt::Key_F10);
+ split->setShortcut(Qt::Key_F3);
updateSplitAction();
connect(split, SIGNAL(triggered()), this, SLOT(toggleSplitView()));