From: Peter Penz Date: Mon, 7 May 2007 05:33:20 +0000 (+0000) Subject: don't use '/' as shortcut for filtering, this conflicts with the usage of the embedde... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/87d2df39b5721bed0abeae563eca8f383887be77?ds=inline don't use '/' as shortcut for filtering, this conflicts with the usage of the embedded terminal svn path=/trunk/KDE/kdebase/apps/; revision=661959 --- 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("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");