From fe69dacaf192b574436565ee9801ab125e6de29f Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Thu, 6 Feb 2020 17:30:36 -0300 Subject: [PATCH] loginDialog: Use text entry for username https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/922 --- js/gdm/authPrompt.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js index d29414004..a62e1b13d 100644 --- a/js/gdm/authPrompt.js +++ b/js/gdm/authPrompt.js @@ -423,6 +423,9 @@ var AuthPrompt = GObject.registerClass({ let userWidget = new UserWidget.UserWidget(user, Clutter.Orientation.VERTICAL); this._userWell.set_child(userWidget); + + if (!user) + this._updateEntry(false); } reset() {