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
This commit is contained in:
Georges Basile Stavracas Neto 2020-04-23 19:03:17 -03:00
parent 0dba12193d
commit 2909d91c13

View File

@ -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();