┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-04-14 17:21:53 +0000
committerPeter Penz <[email protected]>2007-04-14 17:21:53 +0000
commitc927a2a290f914c9f6f7b0de7898ac5b275ce317 (patch)
tree00ecc87f77e89883f2c97f08f6dd81e8f2fbc9e9 /src/dolphinmainwindow.cpp
parentb72bd12276b3ae794c942b0dcfca02332677b335 (diff)
fixed shortcut for "Find"
svn path=/trunk/KDE/kdebase/apps/; revision=653948
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index a6d584d37..eb33ca250 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1234,7 +1234,7 @@ void DolphinMainWindow::setupActions()
QAction* findFile = actionCollection()->addAction("find_file");
findFile->setText(i18n("Find File..."));
- findFile->setShortcut(Qt::Key_F);
+ findFile->setShortcut(Qt::CTRL | Qt::Key_F);
findFile->setIcon(KIcon("file-find"));
connect(findFile, SIGNAL(triggered()), this, SLOT(findFile()));