mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-31 14:25:16 +00:00
Changed the super I/O fan control: Fan controls are now always displayed, even if the value is null (as for example for ITE 87XX chips in automatic mode.
This commit is contained in:
@@ -1213,6 +1213,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
||||
superIO.SetControl(index, (byte)(control.SoftwareValue * 2.55));
|
||||
sensor.Control = control;
|
||||
controls.Add(sensor);
|
||||
ActivateSensor(sensor);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1261,10 +1262,7 @@ namespace OpenHardwareMonitor.Hardware.Mainboard {
|
||||
|
||||
foreach (Sensor sensor in controls) {
|
||||
float? value = readControl(sensor.Index);
|
||||
if (value.HasValue) {
|
||||
sensor.Value = value;
|
||||
ActivateSensor(sensor);
|
||||
}
|
||||
sensor.Value = value;
|
||||
}
|
||||
|
||||
postUpdate();
|
||||
|
@@ -10,5 +10,5 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.5.1.8")]
|
||||
[assembly: AssemblyInformationalVersion("0.5.1.8 Alpha")]
|
||||
[assembly: AssemblyVersion("0.5.1.9")]
|
||||
[assembly: AssemblyInformationalVersion("0.5.1.9 Alpha")]
|
Reference in New Issue
Block a user