switcherPopup: Rename _onItemEnter() to _onItemMotion()

Since commit e94de67b, this is called by a motion-event handler instead
of enter-event, so let's adjust the function name.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2097>
This commit is contained in:
Jonas Dreßler 2022-01-12 11:36:41 +01:00 committed by Marge Bot
parent ac4412e4aa
commit 87101cf165
2 changed files with 4 additions and 4 deletions

View File

@ -794,9 +794,9 @@ class AppSwitcher extends SwitcherPopup.SwitcherList {
} }
} }
// We override SwitcherList's _onItemEnter method to delay // We override SwitcherList's _onItemMotion method to delay
// activation when the thumbnail list is open // activation when the thumbnail list is open
_onItemEnter(item) { _onItemMotion(item) {
const index = this._items.indexOf(item); const index = this._items.indexOf(item);
if (this._mouseTimeOutId != 0) if (this._mouseTimeOutId != 0)

View File

@ -428,7 +428,7 @@ var SwitcherList = GObject.registerClass({
this._list.add_actor(bbox); this._list.add_actor(bbox);
bbox.connect('clicked', () => this._onItemClicked(bbox)); bbox.connect('clicked', () => this._onItemClicked(bbox));
bbox.connect('motion-event', () => this._onItemEnter(bbox)); bbox.connect('motion-event', () => this._onItemMotion(bbox));
bbox.label_actor = label; bbox.label_actor = label;
@ -455,7 +455,7 @@ var SwitcherList = GObject.registerClass({
this._itemActivated(this._items.indexOf(item)); this._itemActivated(this._items.indexOf(item));
} }
_onItemEnter(item) { _onItemMotion(item) {
// Avoid reentrancy // Avoid reentrancy
if (item !== this._items[this._highlighted]) if (item !== this._items[this._highlighted])
this._itemEntered(this._items.indexOf(item)); this._itemEntered(this._items.indexOf(item));