Add hotkey global switch

This commit is contained in:
2023-09-29 15:04:30 +08:00
parent 1c49c41b71
commit 749f324f7d
13 changed files with 414 additions and 236 deletions

View File

@@ -286,5 +286,17 @@ namespace GrasscutterTools.Properties {
this["IsUpgraded"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool IsHotkeyEenabled {
get {
return ((bool)(this["IsHotkeyEenabled"]));
}
set {
this["IsHotkeyEenabled"] = value;
}
}
}
}