diff options
| author | Peter Penz <[email protected]> | 2007-05-18 08:42:45 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-05-18 08:42:45 +0000 |
| commit | b10326777ffe797bf573f8e9ce557774a39bb8f8 (patch) | |
| tree | 7231acfe6da61d118d1729dfe952bb465e523737 /src/infosidebarpage.cpp | |
| parent | 8c2d98fca5c40a19c05a94ad6794bde5fe3608e4 (diff) | |
ignore spontaneous show events (thanks to Dominik Haumann for pointing this out)
svn path=/trunk/KDE/kdebase/apps/; revision=665855
Diffstat (limited to 'src/infosidebarpage.cpp')
| -rw-r--r-- | src/infosidebarpage.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index 07887e2bd..565323b4a 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -139,6 +139,9 @@ void InfoSidebarPage::requestDelayedItemInfo(const KUrl& url) void InfoSidebarPage::showEvent(QShowEvent* event) { SidebarPage::showEvent(event); + if (event->spontaneous()) { + return; + } showItemInfo(); } |
