authPrompt: stop spinner after its hidden
The code previously tried to stop spinner after it was hidden, but due to an incorrect check was only stoppig it after it was shown. Also, it was only stopping after hiding due to an animation, and failing to stop it in the non-animated case. This left the spinner hidden and running while VT switched away from the login screen, only stopping when the auth prompt was reset when switching back. https://bugzilla.gnome.org/show_bug.cgi?id=753891
This commit is contained in:
Submodule data/theme/gnome-shell-sass updated: 034d0b775b...1726663941
@ -281,6 +281,12 @@ const AuthPrompt = new Lang.Class({
|
||||
if (oldActor)
|
||||
Tweener.removeTweens(oldActor);
|
||||
|
||||
let wasSpinner;
|
||||
if (oldActor == this._spinner.actor)
|
||||
wasSpinner = true;
|
||||
else
|
||||
wasSpinner = false;
|
||||
|
||||
let isSpinner;
|
||||
if (actor == this._spinner.actor)
|
||||
isSpinner = true;
|
||||
@ -290,6 +296,11 @@ const AuthPrompt = new Lang.Class({
|
||||
if (this._defaultButtonWellActor != actor && oldActor) {
|
||||
if (!animate) {
|
||||
oldActor.opacity = 0;
|
||||
|
||||
if (wasSpinner) {
|
||||
if (this._spinner)
|
||||
this._spinner.stop();
|
||||
}
|
||||
} else {
|
||||
Tweener.addTween(oldActor,
|
||||
{ opacity: 0,
|
||||
@ -298,7 +309,7 @@ const AuthPrompt = new Lang.Class({
|
||||
transition: 'linear',
|
||||
onCompleteScope: this,
|
||||
onComplete: function() {
|
||||
if (isSpinner) {
|
||||
if (wasSpinner) {
|
||||
if (this._spinner)
|
||||
this._spinner.stop();
|
||||
}
|
||||
|
Reference in New Issue
Block a user