[gnome-shell/uajain/adapt-user-avatar-part2: 52/62] authPrompt: Use entry to show question texts



commit 434a47bac01ac736c7828f4d411b685a1a83063e
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]