Fixed Issue 69.

This commit is contained in:
Michael Möller
2010-06-06 11:07:57 +00:00
parent c641a6a2fc
commit dd67a0aa5c
12 changed files with 27 additions and 114 deletions

View File

@@ -111,18 +111,6 @@ namespace OpenHardwareMonitor.GUI {
get { return ValueToString(sensor.Max); }
}
public String Limit {
get {
return sensor.Limit.ToString();
}
set {
if (value != "")
sensor.Limit = float.Parse(value);
else
sensor.Limit = null;
}
}
public override bool Equals(System.Object obj) {
if (obj == null)
return false;