From: Peter Penz Date: Mon, 31 Jan 2011 20:29:10 +0000 (+0100) Subject: Don't show the pointing-hand cursor when double-click is enabled X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/6a8dde1793b9c287567206f28ff03b476ca92df0?ds=inline Don't show the pointing-hand cursor when double-click is enabled CCBUG: 264796 --- diff --git a/src/views/selectionmanager.cpp b/src/views/selectionmanager.cpp index c06d827bd..9c0dd8bda 100644 --- a/src/views/selectionmanager.cpp +++ b/src/views/selectionmanager.cpp @@ -22,6 +22,7 @@ #include "dolphinmodel.h" #include "selectiontoggle.h" #include +#include #include #include @@ -115,7 +116,9 @@ void SelectionManager::slotEntered(const QModelIndex& index) (index.column() == DolphinModel::Name) && (QApplication::mouseButtons() == Qt::NoButton); if (showToggle) { - applyPointingHandCursor(); + if (KGlobalSettings::singleClick()) { + applyPointingHandCursor(); + } m_toggle->setUrl(urlForIndex(index));