summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-05-13 03:06:04 +0200
committerGitHub <noreply@github.com>2021-05-13 03:06:04 +0200
commitc8707628f663a436221e0a2dfa7bf8de8645d012 (patch)
treea6aeaf6dd8fc7b26293d004712770f79e7f71a56
parentMerge pull request #6267 from german77/gestureRewrite (diff)
parentconfigure_ui: Call RequestGameListUpdate when toggling "Show Add-Ons Column" (diff)
downloadyuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar
yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar.gz
yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar.bz2
yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar.lz
yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar.xz
yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar.zst
yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.zip
-rw-r--r--src/yuzu/configuration/configure_ui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_ui.cpp b/src/yuzu/configuration/configure_ui.cpp
index f35c89e04..0cdaea8a4 100644
--- a/src/yuzu/configuration/configure_ui.cpp
+++ b/src/yuzu/configuration/configure_ui.cpp
@@ -46,6 +46,7 @@ ConfigureUi::ConfigureUi(QWidget* parent) : QWidget(parent), ui(new Ui::Configur
SetConfiguration();
// Force game list reload if any of the relevant settings are changed.
+ connect(ui->show_add_ons, &QCheckBox::stateChanged, this, &ConfigureUi::RequestGameListUpdate);
connect(ui->icon_size_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
&ConfigureUi::RequestGameListUpdate);
connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,