From: Peter Penz Date: Sat, 2 Jun 2007 15:40:38 +0000 (+0000) Subject: Fix issue that selection is not cleared when clicking on another column than the... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/f7a5c62746b91a1e96387c697605544e7df2ffb2 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 --- 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; }