classic: Invert the spinner color
https://bugzilla.gnome.org/show_bug.cgi?id=693688
This commit is contained in:
@ -296,9 +296,12 @@ const AppMenuButton = new Lang.Class({
|
||||
}));
|
||||
|
||||
this._stop = true;
|
||||
|
||||
this._spinner = new AnimatedIcon('process-working.svg',
|
||||
PANEL_ICON_SIZE);
|
||||
if (Main.sessionMode.currentMode == 'classic')
|
||||
this._spinner = new AnimatedIcon('process-working-inverse.svg',
|
||||
PANEL_ICON_SIZE);
|
||||
else
|
||||
this._spinner = new AnimatedIcon('process-working.svg',
|
||||
PANEL_ICON_SIZE);
|
||||
this._container.add_actor(this._spinner.actor);
|
||||
this._spinner.actor.hide();
|
||||
this._spinner.actor.lower_bottom();
|
||||
|
Reference in New Issue
Block a user