From 9075540ef069906ac5975bdcf2e65521bd3d417f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Sun, 20 Apr 2008 12:56:46 +0000 Subject: [PATCH] Don't set curveshape twice, caught by Andre Duffeck svn path=/trunk/KDE/kdebase/workspace/; revision=799113 --- effects/coverswitch.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/effects/coverswitch.cpp b/effects/coverswitch.cpp index 791797c09d..01cd001214 100644 --- a/effects/coverswitch.cpp +++ b/effects/coverswitch.cpp @@ -74,7 +74,6 @@ void CoverSwitchEffect::prePaintScreen( ScreenPrePaintData& data, int time ) double progress = qMin( 1.0, timeLine.value() + time / double( animationDuration )); timeLine.setProgress(progress); timeLine.setCurveShape(TimeLine::EaseInOutCurve); - timeLine.setCurveShape(TimeLine::LinearCurve); } } effects->prePaintScreen(data, time);