diff options
| author | 2021-05-12 21:06:04 -0400 | |
|---|---|---|
| committer | 2021-05-12 21:06:04 -0400 | |
| commit | c8707628f663a436221e0a2dfa7bf8de8645d012 (patch) | |
| tree | a6aeaf6dd8fc7b26293d004712770f79e7f71a56 | |
| 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.gz yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.tar.xz yuzu-c8707628f663a436221e0a2dfa7bf8de8645d012.zip | |
Merge pull request #6298 from Kewlan/toggled-show-add-on-refresh
configure_ui: Call RequestGameListUpdate when toggling "Show Add-Ons Column"
Diffstat (limited to '')
| -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 | |||
| 46 | SetConfiguration(); | 46 | SetConfiguration(); |
| 47 | 47 | ||
| 48 | // Force game list reload if any of the relevant settings are changed. | 48 | // Force game list reload if any of the relevant settings are changed. |
| 49 | connect(ui->show_add_ons, &QCheckBox::stateChanged, this, &ConfigureUi::RequestGameListUpdate); | ||
| 49 | connect(ui->icon_size_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, | 50 | connect(ui->icon_size_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, |
| 50 | &ConfigureUi::RequestGameListUpdate); | 51 | &ConfigureUi::RequestGameListUpdate); |
| 51 | connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, | 52 | connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, |