From: Peter Penz Date: Thu, 10 Jan 2008 23:42:34 +0000 (+0000) Subject: use F3 for "Split View" instead of F10, as F10 is used for "new directory" since... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/09c62f7c6a4f13659fb87cf2e4e8f23ca4125710 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 --- 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()));