From 5ab90e19e78faebaca3bbffb83f3379ccdfc37f0 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 14 May 2008 20:50:00 +0000 Subject: [PATCH] Fixed following issue for the information sidebar: - select n files - hover one selected file (-> old selection preview gets grey, new preview gets started) - go to the viewport before the preview has been finished Result: new preview has been displayed, although the viewport has been entered Wanted behavior: old selection preview should be shown svn path=/trunk/KDE/kdebase/apps/; revision=807837 --- src/infosidebarpage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index a9cc356d4..d2652e0d1 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -152,6 +152,7 @@ void InfoSidebarPage::requestDelayedItemInfo(const KFileItem& item) // The cursor is above the viewport. If files are selected, // show information regarding the selection. if (m_selection.size() > 0) { + m_pendingPreview = false; m_timer->start(TimerDelay); } } else if (!item.url().isEmpty()) { -- 2.47.3