From 53476746bcb739f0af652bc8977f74ebc26c23c6 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Wed, 6 May 2009 18:40:44 +0000 Subject: [PATCH] activate the window; since we're half-managing it ourselves, we need to take this extra step otherwise it can end up minimized. not what we want. BUG:191691 svn path=/trunk/KDE/kdelibs/; revision=964490 --- popupapplet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/popupapplet.cpp b/popupapplet.cpp index f603eb6db..43c4b456f 100644 --- a/popupapplet.cpp +++ b/popupapplet.cpp @@ -547,6 +547,8 @@ void PopupAppletPrivate::internalTogglePopup() } else { dialog->show(); } + + KWindowSystem::activateWindow(dialog->winId()); } }