gnome-shell/gnome-shell-screen-disappear.patch
Dominique Leuenberger e5e7c4b3a2 - Update to version 47.2:
+ 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
2024-11-26 13:02:35 +00:00

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');