classic: Invert the spinner color

https://bugzilla.gnome.org/show_bug.cgi?id=693688
This commit is contained in:
Matthias Clasen
2013-04-08 19:03:50 -04:00
parent 1bce210c51
commit f358bb1a96
3 changed files with 702 additions and 3 deletions

View File

@ -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();