GUI/SensorGadget.cs
changeset 362 1dfe9dac1651
parent 344 3145aadca3d2
     1.1 --- a/GUI/SensorGadget.cs	Wed Jul 11 22:28:39 2012 +0000
     1.2 +++ b/GUI/SensorGadget.cs	Thu Jul 12 10:17:18 2012 +0000
     1.3 @@ -581,7 +581,7 @@
     1.4                if (sensor.SensorType == SensorType.Temperature &&
     1.5                  unitManager.TemperatureUnit == TemperatureUnit.Fahrenheit) {
     1.6                  formatted = string.Format("{0:F1} °F",
     1.7 -                  sensor.Value * 1.8 + 32);
     1.8 +                  UnitManager.CelsiusToFahrenheit(sensor.Value));
     1.9                } else {
    1.10                  formatted = string.Format(format, sensor.Value);
    1.11                }