From 7bdf2a8fa629c72eae4b5600e08259c9b789cde8 Mon Sep 17 00:00:00 2001 From: Neroth Date: Fri, 27 Apr 2012 15:03:33 +0200 Subject: [PATCH] Fix setting of symbolic icon --- src/extension.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extension.js b/src/extension.js index ebe2f71..26896e5 100644 --- a/src/extension.js +++ b/src/extension.js @@ -866,14 +866,14 @@ WeatherMenuButton.prototype = { this._sunriseIcon = new St.Icon({ icon_type: this._icon_type, icon_size: 15, - icon_name: 'weather-clear'+(this._icon_type == St.IconType.SYMBOLIC ? '-symbolic' : ''), + icon_name: 'weather-clear', style_class: 'weather-sunrise-icon' }); this._sunsetIcon = new St.Icon({ icon_type: this._icon_type, icon_size: 15, - icon_name: 'weather-clear-night'+(this._icon_type == St.IconType.SYMBOLIC ? '-symbolic' : ''), + icon_name: 'weather-clear-night', style_class: 'weather-sunset-icon' });