From 817aec5466eeccf9d00fc1e69b4b77f1aebf44fd Mon Sep 17 00:00:00 2001 From: Harshula Jayasuriya Date: Sat, 14 Sep 2019 21:39:28 +1000 Subject: [PATCH] overview: Fix fading out desktop icons A typo in commit 0846238f69ad1 broke the animation. Signed-off-by: Harshula Jayasuriya https://gitlab.gnome.org/GNOME/gnome-shell/issues/1616 --- js/ui/overview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/overview.js b/js/ui/overview.js index 72626cbc0..e4837c821 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -452,7 +452,7 @@ var Overview = class { this._desktopFade.show(); this._desktopFade.ease({ opacity: 0, - mode: Clutter.Animates.EASE_OUT_QUAD, + mode: Clutter.AnimationMode.EASE_OUT_QUAD, duration: ANIMATION_TIME }); }