diff options
| author | Peter Penz <[email protected]> | 2008-05-14 20:50:00 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-05-14 20:50:00 +0000 |
| commit | 5ab90e19e78faebaca3bbffb83f3379ccdfc37f0 (patch) | |
| tree | 60b7525bdc1a1b590638bf11cd3933425364a992 /src | |
| parent | df55b9d89f0b064f1dfa0fd2ca0f6bd08ea0c8e4 (diff) | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/infosidebarpage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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()) { |
