From 2909d91c13fe14809a677462101c13beaab0e3ed Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Thu, 23 Apr 2020 19:03:17 -0300 Subject: [PATCH] appDisplay: Use const instead of let in vfunc_leave_event The return value of the chain up is not changed, let's use the proper descriptor. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1211 --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index c8ac32841..2d58541f3 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -2205,7 +2205,7 @@ var AppIcon = GObject.registerClass({ } vfunc_leave_event(crossingEvent) { - let ret = super.vfunc_leave_event(crossingEvent); + const ret = super.vfunc_leave_event(crossingEvent); this.fake_release(); this._removeMenuTimeout();