From 71f55643b275c6b8761f6ef1e6a3150fdfdd5c28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 22 Jul 2020 02:05:48 +0200 Subject: [PATCH] layout: Only show ripple animation when overview was toggled On X11, clients can grab keyboard on pointer (for example for popup menus), and as a result the pushModal() call when opening the overview fails. However when the hot corner was used to toggle the overview, we still show the ripple animation in that case, which is confusing as the action did not actually happen. Fix this by only showing the ripples if the overview is animating after calling toggle(), as that should be a reliable indication of whether the call was successful. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3005 --- js/ui/layout.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/layout.js b/js/ui/layout.js index d37c76940..b082ec80b 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -1228,8 +1228,9 @@ class HotCorner extends Clutter.Actor { return; if (Main.overview.shouldToggleByCornerOrButton()) { - this._ripples.playAnimation(this._x, this._y); Main.overview.toggle(); + if (Main.overview.animationInProgress) + this._ripples.playAnimation(this._x, this._y); } }