Change 'x*0.555556' to 'x/1.8'

yahoo_weather
Star Brilliant 12 years ago
parent 82fd8ee543
commit 4edb963502
  1. 2
      src/extension.js

@ -836,7 +836,7 @@ const WeatherMenuButton = new Lang.Class({
toCelsius: function(t)
{
return String(Math.round((Number(t)-32)*0.555556));
return String(Math.round((Number(t)-32)/1.8));
},
toKelvin: function(t)

Loading…
Cancel
Save