From 3209078881868d19a6fd1a0cd4dc85202147ce40 Mon Sep 17 00:00:00 2001 From: Mattia Meneguzzo Date: Tue, 19 Jun 2012 10:03:22 +0300 Subject: [PATCH] Added a comma between weather conditions and temperature in panel when "Show comment in panel" is on. --- src/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.js b/src/extension.js index d7255a7..2d916ca 100644 --- a/src/extension.js +++ b/src/extension.js @@ -877,7 +877,7 @@ WeatherMenuButton.prototype = { if (this._text_in_panel) weatherInfoT = temperature + ' ' + this.unit_to_unicode(); - this._weatherInfo.text = weatherInfoC + ((weatherInfoC)?" ":"") + weatherInfoT; + this._weatherInfo.text = weatherInfoC + ((weatherInfoC)?", ":"") + weatherInfoT; this._currentWeatherSummary.text = comment + ", " + temperature + ' ' + this.unit_to_unicode(); this._currentWeatherLocation.text = location;