From 0a4be01ab18206f48e859f480b0f9fd271e137cb Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 7 Feb 2019 11:20:51 -0500 Subject: [PATCH] loginDialog: hide user list when starting timed login If the timeout fires and we're starting timed login, we should hide the user list, in case the login process needs to show the user any messages on the auth prompt. --- js/gdm/loginDialog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index 02f5b4565..597fdbba8 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -1083,6 +1083,7 @@ var LoginDialog = GObject.registerClass({ () => { this._timedLoginBatch = null; + this._hideUserList(); this._greeter.call_begin_auto_login_sync(userName, null); }];