aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/yuzu/configuration/configure_debug.cpp
diff options
context:
space:
mode:
authorlat9nq <[email protected]>2022-03-17 19:20:15 -0400
committerlat9nq <[email protected]>2022-03-17 19:20:15 -0400
commitdb637b5a4c02772eb827ed01a6ecb430e4b65daa (patch)
treeaa8e65a9abe1e6dca038c5f2b1734df85b5f5058 /src/yuzu/configuration/configure_debug.cpp
parent7760777c06ba227eba2f985765e07d8f4829a8c6 (diff)
downloadyuzu-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/configuration/configure_debug.cpp')
-rw-r--r--src/yuzu/configuration/configure_debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_debug.cpp b/src/yuzu/configuration/configure_debug.cpp
index c2e6bf8d1..bd50f7a68 100644
--- a/src/yuzu/configuration/configure_debug.cpp
+++ b/src/yuzu/configuration/configure_debug.cpp
@@ -61,7 +61,7 @@ void ConfigureDebug::SetConfiguration() {
ui->extended_logging->setChecked(Settings::values.extended_logging.GetValue());
#ifdef YUZU_USE_QT_WEB_ENGINE
- ui->disable_web_applet->setChecked(UISettings::values.disable_web_applet);
+ ui->disable_web_applet->setChecked(UISettings::values.disable_web_applet.GetValue());
#else
ui->disable_web_applet->setEnabled(false);
ui->disable_web_applet->setText(QString::fromUtf8("Web applet not compiled"));