From acaa9f7f77361a87a7fcb79f8a37e7eebb7a9f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 21 Nov 2019 22:01:21 +0100 Subject: [PATCH] polkitAgent: Fix spinner Commit 6af25b282c accidentally changed the case of the property. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/840 --- js/ui/components/polkitAgent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/polkitAgent.js b/js/ui/components/polkitAgent.js index bef62bd95..4af2df391 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -103,7 +103,7 @@ var AuthenticationDialog = GObject.registerClass({ GObject.BindingFlags.SYNC_CREATE); this._passwordBox.add_child(this._passwordEntry); - this._workspinner = new Animation.Spinner(WORK_SPINNER_ICON_SIZE, { + this._workSpinner = new Animation.Spinner(WORK_SPINNER_ICON_SIZE, { animate: true, }); this._passwordBox.add(this._workSpinner);