Don't start the fade out animation if the applet handle is still under the mouse.

svn path=/trunk/KDE/kdelibs/; revision=948317
This commit is contained in:
Fredrik Höglund 2009-04-02 19:08:22 +00:00
parent 44d2194253
commit 4f0a9c1b2f

View File

@ -848,7 +848,9 @@ void AppletHandle::hoverTimeout()
void AppletHandle::leaveTimeout() void AppletHandle::leaveTimeout()
{ {
startFading(FadeOut, m_entryPos); if (!isUnderMouse()) {
startFading(FadeOut, m_entryPos);
}
} }
void AppletHandle::appletDestroyed() void AppletHandle::appletDestroyed()