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:
parent
0dba12193d
commit
2909d91c13
@ -2205,7 +2205,7 @@ var AppIcon = GObject.registerClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
vfunc_leave_event(crossingEvent) {
|
vfunc_leave_event(crossingEvent) {
|
||||||
let ret = super.vfunc_leave_event(crossingEvent);
|
const ret = super.vfunc_leave_event(crossingEvent);
|
||||||
|
|
||||||
this.fake_release();
|
this.fake_release();
|
||||||
this._removeMenuTimeout();
|
this._removeMenuTimeout();
|
||||||
|
Loading…
Reference in New Issue
Block a user