From 725c72e020df019552ecbb63fafcdf2211839085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Mon, 7 Oct 2019 15:00:19 +0200 Subject: [PATCH] magnifier: Use own showSystemCursor() instead of set_pointer_visible() We already have our own function to show the system cursor, use it! https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/993 --- js/ui/magnifier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/magnifier.js b/js/ui/magnifier.js index 844a1506c..8e149a130 100644 --- a/js/ui/magnifier.js +++ b/js/ui/magnifier.js @@ -169,7 +169,7 @@ var Magnifier = class Magnifier { // Make sure system mouse pointer is shown when all zoom regions are // invisible. if (!activate) - this._cursorTracker.set_pointer_visible(true); + this.showSystemCursor(); // Notify interested parties of this change this.emit('active-changed', activate);