From f904ed3facec07d25053e74742724faba9b6715b Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Thu, 16 Apr 2009 05:29:16 +0000 Subject: [PATCH] some small tweaks during usage tonight svn path=/trunk/KDE/kdelibs/; revision=954626 --- dialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dialog.cpp b/dialog.cpp index 3c51ddfc7..874db9326 100644 --- a/dialog.cpp +++ b/dialog.cpp @@ -535,7 +535,7 @@ Dialog::ResizeCorners Dialog::resizeCorners() const void Dialog::animatedHide(Plasma::Direction direction) { if (d->hideAnimId) { - // already hiding + // already hiding/showing return; } @@ -552,14 +552,14 @@ void Dialog::animatedHide(Plasma::Direction direction) void Dialog::animatedShow(Plasma::Direction direction) { if (d->hideAnimId) { - // already hiding + // already hiding/showing return; } if (KWindowSystem::compositingActive() && d->view) { //TODO: implement for the QWidget scenario too d->hideDirection = direction; - d->hideAnimId = Animator::self()->customAnimation(10, 100, Animator::EaseOutCurve, + d->hideAnimId = Animator::self()->customAnimation(5, 100, Animator::EaseInCurve, this, "progressShow"); } else { show();