From 80ab28bc3a0f6914a50b918dd661ca0179865279 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 26 Aug 2013 18:04:09 -0400 Subject: [PATCH] loginDialog: Fade in the gdm auth prompt on login --- js/gdm/loginDialog.js | 6 ++++++ 1 file changed, 6 insertions(+) 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; },