gdmUtil: Fix auth prompt drawing over user list

If the user fails to enter their password then hits escape, we
jump back to the user list, then ask again for a password in a
garbled screen. this commit fixes that by guarding against the retry
if the fail counter is reset.
This commit is contained in:
Ray Strode 2017-06-07 15:00:11 -04:00
parent e995730a4d
commit 875a1d6159

View File

@ -540,7 +540,8 @@ const ShellUserVerifier = new Lang.Class({
let signalId = this.connect('no-more-messages',
Lang.bind(this, function() {
this.disconnect(signalId);
this._retry();
if (this._failCounter != 0)
this._retry();
}));
}
} else {