From eb738a2349b0463ff7d1d65870e4e2252b6b3a53 Mon Sep 17 00:00:00 2001 From: Neroth Date: Sun, 28 Oct 2012 21:50:47 +0100 Subject: [PATCH] Forcast temp modification --- src/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.js b/src/extension.js index 40c535d..790a5ad 100644 --- a/src/extension.js +++ b/src/extension.js @@ -1229,7 +1229,7 @@ const WeatherMenuButton = new Lang.Class({ date_string = _("%s days ago").replace("%s",dayLeft); forecastUi.Day.text = date_string + ' (' + this.get_locale_day(forecastDate.getDay()) + ')'; - forecastUi.Temperature.text = parseFloat(t_low).toLocaleString() + '\u2013' + parseFloat(t_high).toLocaleString() + ' ' + this.unit_to_unicode(); + forecastUi.Temperature.text = '\u2193 ' + parseFloat(t_low).toLocaleString() + ' ' + this.unit_to_unicode() + ' \u2191 ' + parseFloat(t_high).toLocaleString() + ' ' + this.unit_to_unicode(); forecastUi.Summary.text = comment; forecastUi.Icon.icon_name = this.get_weather_icon_safely(code); }