diff options
| author | Peter Penz <[email protected]> | 2007-05-07 05:33:20 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-05-07 05:33:20 +0000 |
| commit | 87d2df39b5721bed0abeae563eca8f383887be77 (patch) | |
| tree | b38d5af0cbe71ba14fdc56546553012d4f48e916 | |
| parent | 3535ec7f7ef51ab979ec386c41267c81854fed87 (diff) | |
don't use '/' as shortcut for filtering, this conflicts with the usage of the embedded terminal
svn path=/trunk/KDE/kdebase/apps/; revision=661959
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 00eadbda9..5623ba161 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1237,7 +1237,7 @@ void DolphinMainWindow::setupActions() KToggleAction* showFilterBar = actionCollection()->add<KToggleAction>("show_filter_bar"); showFilterBar->setText(i18n("Show Filter Bar")); - showFilterBar->setShortcut(Qt::Key_Slash); + showFilterBar->setShortcut(Qt::CTRL | Qt::Key_I); connect(showFilterBar, SIGNAL(triggered()), this, SLOT(toggleFilterBarVisibility())); QAction* compareFiles = actionCollection()->addAction("compare_files"); |
