From 9043c092f9ffff4076790eee7e255a39a072b3da Mon Sep 17 00:00:00 2001 From: Vlad Zagorodniy Date: Fri, 14 Sep 2018 12:45:33 +0300 Subject: [PATCH] [effects/cubeslide] Always slide desktop window --- effects/cube/cubeslide.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/effects/cube/cubeslide.cpp b/effects/cube/cubeslide.cpp index 176bd28058..7c780ca9f4 100644 --- a/effects/cube/cubeslide.cpp +++ b/effects/cube/cubeslide.cpp @@ -536,6 +536,9 @@ bool CubeSlideEffect::shouldAnimate(const EffectWindow* w) const return !dontSlidePanels; } if (w->isOnAllDesktops()) { + if (w->isDesktop()) { + return true; + } if (!w->isManaged()) { return false; }