- Update to version 46.3.1: + Fix including gvc source in tarball - Changes from version 46.3: + Fix rendering artifacts of some rounded borders + Fix overview animation glitch when windows overlap workspaces + Misc. bug fixes and cleanups + Updated translations. - Add gvc (libgnome-volume-control) submodule to _service file and inject subproject into the source directory. This is not tracked as git submodules, so the regular 'git submodule' service parameter is ineffective here. + Misc. bug fixes and cleanups (bsc#1215485 CVE-2023-43090). OBS-URL: https://build.opensuse.org/request/show/1184215 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=578
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');
|
|
|