diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-01-26 10:28:29 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-01-26 10:28:29 +0100 |
commit | bfe9b1a7940cd17ecc32f1c7a0a29d8dec78dfb5 (patch) | |
tree | c07f7e630125e445110972df13c286c87d704604 /src/config.hpp | |
parent | 3d5178ac28b85b024c69db5eab43488dcee86267 (diff) |
5.1.2
Diffstat (limited to 'src/config.hpp')
-rw-r--r-- | src/config.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.hpp b/src/config.hpp index 4f28994..56a488c 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -50,6 +50,7 @@ struct MainConfig { bool restore_portal_session = true; bool use_new_ui = false; int32_t installed_gsr_global_hotkeys_version = 0; + bool kbd_mouse_update_installed = false; }; struct YoutubeStreamConfig { @@ -338,6 +339,7 @@ static std::map<std::string, ConfigValue> get_config_options(Config &config) { {"main.restore_portal_session", {CONFIG_TYPE_BOOL, &config.main_config.restore_portal_session}}, {"main.use_new_ui", {CONFIG_TYPE_BOOL, &config.main_config.use_new_ui}}, {"main.installed_gsr_global_hotkeys_version", {CONFIG_TYPE_I32, &config.main_config.installed_gsr_global_hotkeys_version}}, + {"main.kbd_mouse_update_installed", {CONFIG_TYPE_BOOL, &config.main_config.kbd_mouse_update_installed}}, {"streaming.service", {CONFIG_TYPE_STRING, &config.streaming_config.streaming_service}}, {"streaming.youtube.key", {CONFIG_TYPE_STRING, &config.streaming_config.youtube.stream_key}}, |