backport the fix to the last fix

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

svn path=/branches/KDE/4.2/kdelibs/; revision=948320
This commit is contained in:
Marco Martin 2009-04-02 19:10:24 +00:00
parent bbff7fd4cf
commit 988c51290b

View File

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