diff options
author | lat9nq <[email protected]> | 2022-03-17 19:20:15 -0400 |
---|---|---|
committer | lat9nq <[email protected]> | 2022-03-17 19:20:15 -0400 |
commit | db637b5a4c02772eb827ed01a6ecb430e4b65daa (patch) | |
tree | aa8e65a9abe1e6dca038c5f2b1734df85b5f5058 /src/yuzu/uisettings.h | |
parent | 7760777c06ba227eba2f985765e07d8f4829a8c6 (diff) | |
download | yuzu-android-db637b5a4c02772eb827ed01a6ecb430e4b65daa.tar.gz yuzu-android-db637b5a4c02772eb827ed01a6ecb430e4b65daa.zip |
yuzu qt: Save disable_web_applet setting
The web applet causes multiple issues with the rest of the application.
Disable it by default and add a debug option to re-enable it until a
proper solution can be found.
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r-- | src/yuzu/uisettings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index c952843fe..cc5aee382 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -114,7 +114,7 @@ struct Values { bool configuration_applied; bool reset_to_defaults; - bool disable_web_applet{}; + Settings::BasicSetting<bool> disable_web_applet{true, "disable_web_applet"}; }; extern Values values; |