Reset resolution to default as it will pick highest refresh rate

Make Resolution change to be experimental features
This commit is contained in:
Kamil Trzciński 2022-11-18 16:15:34 +01:00
parent c89a59ab0b
commit e5fd135b30
7 changed files with 47 additions and 7 deletions

View file

@ -59,22 +59,40 @@ namespace PowerControl {
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool EnableNeptuneController {
get {
return ((bool)(this["EnableNeptuneController"]));
}
set {
this["EnableNeptuneController"] = value;
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool EnableVolumeControls {
get {
return ((bool)(this["EnableVolumeControls"]));
}
set {
this["EnableVolumeControls"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool EnableExperimentalFeatures {
get {
return ((bool)(this["EnableExperimentalFeatures"]));
}
set {
this["EnableExperimentalFeatures"] = value;
}
}
}
}