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.
This commit is contained in:
lat9nq
2022-03-17 19:20:15 -04:00
parent 7760777c06
commit db637b5a4c
4 changed files with 6 additions and 3 deletions

View File

@ -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;