mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
magnifier: Fix isTrackingMouse()
Commit 8aed51180f changed the way mouse tracking is implemented,
but missed updating that function.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2037>
This commit is contained in:
parent
c3a764693d
commit
739725e521
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ export class Magnifier extends Signals.EventEmitter {
|
|||
* @returns {boolean} whether the magnifier is currently tracking the mouse
|
||||
*/
|
||||
isTrackingMouse() {
|
||||
return !!this._mouseTrackingId;
|
||||
return !!this._pointerWatch;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue