From ff544450a5b1c951f34e5fe0a3316a803505e74d Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 15 Apr 2013 18:40:00 -0400 Subject: [PATCH] Revert "classic: Invert the spinner color" This reverts commit f358bb1a965fd8a6cdd9ed044ff885c7ae03b880. --- data/Makefile.am | 1 - data/theme/process-working-inverse.svg | 695 ------------------------- js/ui/panel.js | 9 +- 3 files changed, 3 insertions(+), 702 deletions(-) delete mode 100644 data/theme/process-working-inverse.svg diff --git a/data/Makefile.am b/data/Makefile.am index 0366d7ec6..f555d9a84 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -44,7 +44,6 @@ dist_theme_DATA = \ theme/panel-button-highlight-narrow.svg \ theme/panel-button-highlight-wide.svg \ theme/process-working.svg \ - theme/process-working-inverse.svg \ theme/running-indicator.svg \ theme/source-button-border.svg \ theme/summary-counter.svg \ diff --git a/data/theme/process-working-inverse.svg b/data/theme/process-working-inverse.svg deleted file mode 100644 index b0957a37a..000000000 --- a/data/theme/process-working-inverse.svg +++ /dev/null @@ -1,695 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/js/ui/panel.js b/js/ui/panel.js index 6d31f8d06..c16e318cd 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -296,12 +296,9 @@ const AppMenuButton = new Lang.Class({ })); this._stop = true; - 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._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();