From 91c54f4662776a0b70dcec24b0bca64de96144b6 Mon Sep 17 00:00:00 2001 From: Jens Lody Date: Wed, 5 Mar 2014 07:30:21 +0100 Subject: [PATCH] Remove wrong escape sequences. --- src/extension.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/extension.js b/src/extension.js index 10aa419..ebb98df 100644 --- a/src/extension.js +++ b/src/extension.js @@ -784,21 +784,21 @@ const WeatherMenuButton = new Lang.Class({ unit_to_unicode: function() { if (this._units == WeatherUnits.FAHRENHEIT) - return '\u00B0\F'; + return '\u00B0F'; else if (this._units == WeatherUnits.KELVIN) return 'K'; else if (this._units == WeatherUnits.RANKINE) - return '\u00B0\Ra'; + return '\u00B0Ra'; else if (this._units == WeatherUnits.REAUMUR) - return '\u00B0\R\u00E9'; + return '\u00B0R\u00E9'; else if (this._units == WeatherUnits.ROEMER) - return '\u00B0\R\u00F8'; + return '\u00B0R\u00F8'; else if (this._units == WeatherUnits.DELISLE) - return '\u00B0\De'; + return '\u00B0De'; else if (this._units == WeatherUnits.NEWTON) - return '\u00B0\N'; + return '\u00B0N'; else - return '\u00B0\C'; + return '\u00B0C'; }, get_weather_icon: function(code) {