┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/infosidebarpage.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-05-18 08:42:45 +0000
committerPeter Penz <[email protected]>2007-05-18 08:42:45 +0000
commitb10326777ffe797bf573f8e9ce557774a39bb8f8 (patch)
tree7231acfe6da61d118d1729dfe952bb465e523737 /src/infosidebarpage.cpp
parent8c2d98fca5c40a19c05a94ad6794bde5fe3608e4 (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.cpp3
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();
}