From 5c700eefd5ab1c897a944662b37f0fa2d0919ca6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Sat, 25 Feb 2017 23:47:28 +0100 Subject: [PATCH] Glide effect: skip invisible windows BUGS: 359831 REVIEW: 127378 --- effects/glide/glide.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/effects/glide/glide.cpp b/effects/glide/glide.cpp index 22f648e576..dfd63c2c3b 100644 --- a/effects/glide/glide.cpp +++ b/effects/glide/glide.cpp @@ -206,6 +206,8 @@ bool GlideEffect::isGlideWindow(EffectWindow* w) { if (effects->activeFullScreenEffect()) return false; + if (!w->isVisible()) + return false; if (w->data(IsGlideWindow).toBool()) return true; if (w->hasDecoration())