From f7a5c62746b91a1e96387c697605544e7df2ffb2 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sat, 2 Jun 2007 15:40:38 +0000 Subject: [PATCH] Fix issue that selection is not cleared when clicking on another column than the 'Name' column (occurs in combination with the Details View). svn path=/trunk/KDE/kdebase/apps/; revision=670796 --- src/dolphinview.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 9320cd4cf..1a33668e0 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -731,6 +731,8 @@ void DolphinView::changeDirectory(const KUrl& url) void DolphinView::triggerItem(const QModelIndex& index) { if (!isValidNameIndex(index)) { + clearSelection(); + showHoverInformation(index); return; } -- 2.47.3