diff -r 3f2d9ebacf38 -r c6ee430d6995 GUI/SensorNotifyIcon.cs --- a/GUI/SensorNotifyIcon.cs Wed Aug 31 22:48:49 2011 +0000 +++ b/GUI/SensorNotifyIcon.cs Sat Dec 31 17:31:04 2011 +0000 @@ -198,6 +198,8 @@ return string.Format("{0:F0}", sensor.Value); case SensorType.Power: return string.Format("{0:F0}", sensor.Value); + case SensorType.Data: + return string.Format("{0:F0}", sensor.Value); } return "-"; } @@ -286,6 +288,7 @@ case SensorType.Control: format = "\n{0}: {1:F1} %"; break; case SensorType.Level: format = "\n{0}: {1:F1} %"; break; case SensorType.Power: format = "\n{0}: {1:F0} W"; break; + case SensorType.Data: format = "\n{0}: {1:F0} GB"; break; } string formattedValue = string.Format(format, sensor.Name, sensor.Value); string hardwareName = sensor.Hardware.Name;