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