From 9f5f6aa9b2c8f5f055a3c3b6ff2270a79c1b5e69 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Tue, 11 Feb 2020 12:03:07 -0300 Subject: [PATCH] authPrompt: Don't hide the caps lock warning label Hiding the Caps lock warning label changes the layout of Auth Prompt. This is specially noticeable when logging in with unlisted users, where we change the visibility of this label after typing a username, and the whole user widget moves a bit. Change the Cap lock label's opacity instead of hiding it. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/922 --- js/gdm/authPrompt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js index 5b6966eb5..df8767b82 100644 --- a/js/gdm/authPrompt.js +++ b/js/gdm/authPrompt.js @@ -200,7 +200,7 @@ var AuthPrompt = GObject.registerClass({ this._mainBox.replace_child(this._entry, this._textEntry); this._entry = this._textEntry; } - this._capsLockWarningLabel.visible = secret; + this._capsLockWarningLabel.opacity = secret ? 0 : 255; } _onAskQuestion(verifier, serviceName, question, secret) {