diff --git a/src/effects/overview/overvieweffect.cpp b/src/effects/overview/overvieweffect.cpp index 8f0a54bbf7..8a8451e57a 100644 --- a/src/effects/overview/overvieweffect.cpp +++ b/src/effects/overview/overvieweffect.cpp @@ -105,7 +105,7 @@ void OverviewEffect::reconfigure(ReconfigureFlags) { OverviewConfig::self()->read(); setLayout(ExpoLayout::LayoutMode(OverviewConfig::layoutMode())); - setAnimationDuration(animationTime(300)); + setAnimationDuration(animationTime(200)); for (const ElectricBorder &border : qAsConst(m_borderActivate)) { effects->unreserveElectricBorder(border, this); diff --git a/src/effects/overview/overvieweffect.h b/src/effects/overview/overvieweffect.h index 782f887617..3d89994492 100644 --- a/src/effects/overview/overvieweffect.h +++ b/src/effects/overview/overvieweffect.h @@ -87,7 +87,7 @@ private: QList m_borderActivate; QList m_touchBorderActivate; bool m_activated = false; - int m_animationDuration = 300; + int m_animationDuration = 200; ExpoLayout::LayoutMode m_layout = ExpoLayout::LayoutNatural; };