Dominique Leuenberger
e5e7c4b3a2
+ Fix graphical artifacts in partially-rounded buttons + Fix caret tracking in magnifier + Improve accessibility of keyboard backlight quick settings toggle + Fix resetting non-caps shift key in on-screen keyboard + Misc. bug fixes and cleanups + Updated translations. OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=596
17 lines
660 B
Diff
17 lines
660 B
Diff
Index: gnome-shell-45.0/js/gdm/authPrompt.js
|
|
===================================================================
|
|
--- gnome-shell-45.0.orig/js/gdm/authPrompt.js
|
|
+++ gnome-shell-45.0/js/gdm/authPrompt.js
|
|
@@ -627,8 +627,10 @@ export const AuthPrompt = GObject.regist
|
|
this._updateEntry(true);
|
|
this.stopSpinning();
|
|
|
|
- if (oldStatus === AuthPromptStatus.VERIFICATION_FAILED)
|
|
+ if (oldStatus == AuthPromptStatus.VERIFICATION_FAILED) {
|
|
+ this._userVerifier.cancel();
|
|
this.emit('failed');
|
|
+ }
|
|
else if (oldStatus === AuthPromptStatus.VERIFICATION_CANCELLED)
|
|
this.emit('cancelled');
|
|
|