[gnome-shell/uajain/adapt-user-avatar-part2: 11/22] authPrompt: Use entry to show question texts
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/uajain/adapt-user-avatar-part2: 11/22] authPrompt: Use entry to show question texts
- Date: Wed, 12 Feb 2020 19:29:11 +0000 (UTC)
commit c0522cc5f48d748c165f3d9944b88f2c0b315a00
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Thu Feb 6 16:57:53 2020 -0300
authPrompt: Use entry to show question texts
Currently, there is a dedicated label above the entry to
display the question text. According to the new mockups
for the lock screen, this label doesn't exist; instead,
the question is set inside the entry itself, as a hint
text.
Set the questions as hint texts of the entry, and remove
the now unused label.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/922
js/gdm/authPrompt.js | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
---
diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js
index 6dc914a039..82852207ef 100644
--- a/js/gdm/authPrompt.js
+++ b/js/gdm/authPrompt.js
@@ -89,13 +89,6 @@ var AuthPrompt = GObject.registerClass({
y_expand: true,
});
this.add_child(this._userWell);
- this._label = new St.Label({
- style_class: 'login-dialog-prompt-label',
- x_expand: false,
- y_expand: true,
- });
-
- this.add_child(this._label);
this._initEntryRow();
@@ -346,11 +339,9 @@ var AuthPrompt = GObject.registerClass({
}
setQuestion(question) {
- this._label.set_text(question);
+ this._entry.hint_text = question;
- this._label.show();
this._entry.show();
-
this._entry.grab_key_focus();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]