1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-12-15 15:55:15 -06:00

Merge pull request #1640 from DarkLordZach/game-list-reload

game_list: Only reload game list after relevant settings changed
This commit is contained in:
bunnei
2018-11-18 19:24:53 -08:00
committed by GitHub
5 changed files with 28 additions and 1 deletions

View File

@@ -23,6 +23,9 @@ ConfigureGeneral::ConfigureGeneral(QWidget* parent)
this->setConfiguration();
connect(ui->toggle_deepscan, &QCheckBox::stateChanged, this,
[] { UISettings::values.is_game_list_reload_pending.exchange(true); });
ui->use_cpu_jit->setEnabled(!Core::System::GetInstance().IsPoweredOn());
}