Added some GUI improvements: Better handling of the row selection, minimal row spacing of 18 pixel (to get nice dotted lines) and 3 decimal digits for voltages. Also changed the tree view font rendering to get better quality without ClearType.

This commit is contained in:
Michael Möller
2011-05-15 20:48:52 +00:00
parent 0fb52a4723
commit 58fcb67dcd
4 changed files with 33 additions and 22 deletions

View File

@@ -67,7 +67,7 @@ namespace OpenHardwareMonitor.GUI {
this.settings = settings;
this.unitManager = unitManager;
switch (sensor.SensorType) {
case SensorType.Voltage: format = "{0:F2} V"; break;
case SensorType.Voltage: format = "{0:F3} V"; break;
case SensorType.Clock: format = "{0:F0} MHz"; break;
case SensorType.Load: format = "{0:F1} %"; break;
case SensorType.Temperature: format = "{0:F1} °C"; break;