diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-05-13 03:06:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 03:06:04 +0200 |
commit | c8707628f663a436221e0a2dfa7bf8de8645d012 (patch) | |
tree | a6aeaf6dd8fc7b26293d004712770f79e7f71a56 /src | |
parent | Merge pull request #6267 from german77/gestureRewrite (diff) | |
parent | configure_ui: Call RequestGameListUpdate when toggling "Show Add-Ons Column" (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/configuration/configure_ui.cpp | 1 |
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, |