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:
parent
e995730a4d
commit
875a1d6159
@ -540,7 +540,8 @@ const ShellUserVerifier = new Lang.Class({
|
|||||||
let signalId = this.connect('no-more-messages',
|
let signalId = this.connect('no-more-messages',
|
||||||
Lang.bind(this, function() {
|
Lang.bind(this, function() {
|
||||||
this.disconnect(signalId);
|
this.disconnect(signalId);
|
||||||
this._retry();
|
if (this._failCounter != 0)
|
||||||
|
this._retry();
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user