mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
polkitAgent: Remove styleClass argument for caps lock warning
The caps lock warning now has its own css class that works for this case, too. Remove the custom class parameter and just use the default one. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/952
This commit is contained in:
parent
eee0657727
commit
9009b50bd1
1 changed files with 2 additions and 2 deletions
|
|
@ -108,8 +108,8 @@ var AuthenticationDialog = GObject.registerClass({
|
|||
this._passwordBox.add(this._workSpinner);
|
||||
|
||||
this._passwordBox.hide();
|
||||
this._capsLockWarningLabel = new ShellEntry.CapsLockWarning({ style_class: 'prompt-dialog-caps-lock-warning' });
|
||||
content.add_child(this._capsLockWarningLabel);
|
||||
let capsLockWarning = new ShellEntry.CapsLockWarning();
|
||||
content.add_child(capsLockWarning);
|
||||
|
||||
this._errorMessageLabel = new St.Label({ style_class: 'prompt-dialog-error-label' });
|
||||
this._errorMessageLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue