diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-05-12 21:06:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 21:06:04 -0400 |
commit | c8707628f663a436221e0a2dfa7bf8de8645d012 (patch) | |
tree | a6aeaf6dd8fc7b26293d004712770f79e7f71a56 /src/yuzu/configuration/configure_ui.cpp | |
parent | 5a042bdaa18e99994b9840293bbb0ee53f1ab498 (diff) | |
parent | 1b4331397b18d59bb5c2328d701b42af9b9004c3 (diff) |
Merge pull request #6298 from Kewlan/toggled-show-add-on-refresh
configure_ui: Call RequestGameListUpdate when toggling "Show Add-Ons Column"
Diffstat (limited to 'src/yuzu/configuration/configure_ui.cpp')
-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, |