From a85cddada03705bd72056f8febeb277d5da9002c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 21 Nov 2019 21:01:21 +0000 Subject: [PATCH] polkitAgent: Fix spinner Commit 6af25b282c accidentally changed the case of the property. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/840 (cherry picked from commit acaa9f7f77361a87a7fcb79f8a37e7eebb7a9f34) --- 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 991927c8a..e28bcec4a 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -105,7 +105,7 @@ var AuthenticationDialog = GObject.registerClass({ this._passwordBox.add(this._passwordEntry, { expand: true }); - 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.actor);