loginDialog: Fade in the gdm auth prompt on login

This commit is contained in:
Jasper St. Pierre 2013-08-26 18:04:09 -04:00
parent 48b7ebe1c0
commit 80ab28bc3a

View File

@ -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;
},