┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinviewactionhandler.cpp
diff options
context:
space:
mode:
authorShaun Reich <[email protected]>2009-03-15 04:01:49 +0000
committerShaun Reich <[email protected]>2009-03-15 04:01:49 +0000
commit9caa161efafcd435d9dabcf3ff99e1a9d4147004 (patch)
tree2357016eca090b5599dae6086f448eb69ad3f878 /src/dolphinviewactionhandler.cpp
parentefab8a6fceac7534266eb3731b74776f927646d1 (diff)
Added F8 as an alternate shortcut for "Show Hidden Files". Reasoning: Open file and folder dialogs (do, except for the latter(but all will) use this shortcut).
CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=939522
Diffstat (limited to 'src/dolphinviewactionhandler.cpp')
-rw-r--r--src/dolphinviewactionhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp
index dc4d6a909..748856275 100644
--- a/src/dolphinviewactionhandler.cpp
+++ b/src/dolphinviewactionhandler.cpp
@@ -154,7 +154,7 @@ void DolphinViewActionHandler::createActions()
KToggleAction* showHiddenFiles = m_actionCollection->add<KToggleAction>("show_hidden_files");
showHiddenFiles->setText(i18nc("@action:inmenu View", "Show Hidden Files"));
- showHiddenFiles->setShortcut(Qt::ALT | Qt::Key_Period);
+ showHiddenFiles->setShortcuts(QList<QKeySequence>() << Qt::ALT + Qt::Key_Period << Qt::Key_F8);
connect(showHiddenFiles, SIGNAL(triggered(bool)), this, SLOT(toggleShowHiddenFiles(bool)));
KAction* adjustViewProps = m_actionCollection->addAction("view_properties");