Major bugfixes.

Can now begin at system startup.
This commit is contained in:
Darren Ohonba - Evans
2024-05-24 00:07:59 +01:00
parent cccb93f739
commit b27d2d13ee
5 changed files with 216 additions and 120 deletions

View File

@@ -118,5 +118,29 @@ namespace AsusFanControlGUI.Properties {
this["startMinimised"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1")]
public int hysteresis {
get {
return ((int)(this["hysteresis"]));
}
set {
this["hysteresis"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("2000")]
public int updateSpeed {
get {
return ((int)(this["updateSpeed"]));
}
set {
this["updateSpeed"] = value;
}
}
}
}