Просмотр исходного кода

configure_ui: Call RequestGameListUpdate when toggling "Show Add-Ons Column"

Kewlan 5 лет назад
Родитель
Сommit
1b4331397b
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      src/yuzu/configuration/configure_ui.cpp

+ 1 - 0
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,