[gnome-shell] Revert "classic: Invert the spinner color"



commit ff544450a5b1c951f34e5fe0a3316a803505e74d
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Apr 15 18:40:00 2013 -0400

    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(-)
---
diff --git a/data/Makefile.am b/data/Makefile.am
index 0366d7e..f555d9a 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/js/ui/panel.js b/js/ui/panel.js
index 6d31f8d..c16e318 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();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]