From 4f0a9c1b2f968417f5b93cbd2d13a5824a294f0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B6glund?= Date: Thu, 2 Apr 2009 19:08:22 +0000 Subject: [PATCH] Don't start the fade out animation if the applet handle is still under the mouse. svn path=/trunk/KDE/kdelibs/; revision=948317 --- private/applethandle.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/private/applethandle.cpp b/private/applethandle.cpp index afd61af6a..22e4613d8 100644 --- a/private/applethandle.cpp +++ b/private/applethandle.cpp @@ -848,7 +848,9 @@ void AppletHandle::hoverTimeout() void AppletHandle::leaveTimeout() { - startFading(FadeOut, m_entryPos); + if (!isUnderMouse()) { + startFading(FadeOut, m_entryPos); + } } void AppletHandle::appletDestroyed()