┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/selectionmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/selectionmanager.cpp')
-rw-r--r--src/views/selectionmanager.cpp5
1 files changed, 4 insertions, 1 deletions
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 <kdirmodel.h>
+#include <kglobalsettings.h>
#include <kiconeffect.h>
#include <QAbstractButton>
@@ -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));