diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index 9c1e7ebf5..0e7e549ff 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -905,6 +905,12 @@ const LoginDialog = new Lang.Class({ { sortGroup: CtrlAltTab.SortGroup.MIDDLE }); this._userList.actor.grab_key_focus(); this.actor.show(); + this.actor.opacity = 0; + + Tweener.addTween(this.actor, + { opacity: 255, + time: 1, + transition: 'easeInQuad' }); return true; },