diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-03 20:38:39 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-11-03 20:38:39 -0400 |
commit | 52e7e8eed3daee0de13f7ab114c87cedd3e2a46b (patch) | |
tree | 9d42f7ddf9a22651d280c63a9cad4a4a3e3f2801 /src/yuzu/configuration/configure_gamelist.cpp | |
parent | 6664d7b2c5dcff9846e1a77ffa729a53e6261308 (diff) |
game_list: Only reload game list after relevant settings changed
Prevents unnecessary reloads on every configuration operation.
Diffstat (limited to 'src/yuzu/configuration/configure_gamelist.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_gamelist.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_gamelist.cpp b/src/yuzu/configuration/configure_gamelist.cpp index 8743ce982d..0112bd9505 100644 --- a/src/yuzu/configuration/configure_gamelist.cpp +++ b/src/yuzu/configuration/configure_gamelist.cpp @@ -36,6 +36,16 @@ ConfigureGameList::ConfigureGameList(QWidget* parent) InitializeRowComboBoxes(); this->setConfiguration(); + + // Force game list reload if any of the relevant settings are changed. + connect(ui->show_unknown, &QCheckBox::stateChanged, this, + &ConfigureGameList::RequestGameListUpdate); + connect(ui->icon_size_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, + &ConfigureGameList::RequestGameListUpdate); + connect(ui->row_1_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, + &ConfigureGameList::RequestGameListUpdate); + connect(ui->row_2_text_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, + &ConfigureGameList::RequestGameListUpdate); } ConfigureGameList::~ConfigureGameList() = default; @@ -48,6 +58,10 @@ void ConfigureGameList::applyConfiguration() { Settings::Apply(); } +void ConfigureGameList::RequestGameListUpdate() { + UISettings::values.is_game_list_reload_pending.exchange(true); +} + void ConfigureGameList::setConfiguration() { ui->show_unknown->setChecked(UISettings::values.show_unknown); ui->icon_size_combobox->setCurrentIndex( |