diff options
| author | 2021-05-10 16:45:35 +0200 | |
|---|---|---|
| committer | 2021-05-10 18:49:30 +0200 | |
| commit | 1b4331397b18d59bb5c2328d701b42af9b9004c3 (patch) | |
| tree | 10477e8799abf56bd8299d90354ff9909bf452ae | |
| parent | Merge pull request #6291 from lioncash/kern-shadow (diff) | |
| download | yuzu-1b4331397b18d59bb5c2328d701b42af9b9004c3.tar.gz yuzu-1b4331397b18d59bb5c2328d701b42af9b9004c3.tar.xz yuzu-1b4331397b18d59bb5c2328d701b42af9b9004c3.zip | |
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, |