From ad36e510e4a380b9127b50dc6c46bad114018854 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Fri, 18 Jan 2013 21:43:27 +0100 Subject: [PATCH] don't zoom or clamp windows on effect start/end REVIEW: 108477 BUG: 294428 --- effects/presentwindows/presentwindows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effects/presentwindows/presentwindows.cpp b/effects/presentwindows/presentwindows.cpp index 100d5ec0ab..ff53aefea1 100755 --- a/effects/presentwindows/presentwindows.cpp +++ b/effects/presentwindows/presentwindows.cpp @@ -337,7 +337,7 @@ void PresentWindowsEffect::paintWindow(EffectWindow *w, int mask, QRegion region m_motionManager.apply(w, data); QRect rect = m_motionManager.transformedGeometry(w).toRect(); - if (m_activated && winData->highlight > 0.0) { + if (m_activated && winData->highlight > 0.0 && !m_motionManager.areWindowsMoving()) { // scale the window (interpolated by the highlight level) to at least 105% or to cover 1/16 of the screen size - yet keep it in screen bounds QRect area = effects->clientArea(FullScreenArea, w);