소스 검색

Merge pull request #6298 from Kewlan/toggled-show-add-on-refresh

configure_ui: Call RequestGameListUpdate when toggling "Show Add-Ons Column"
Morph 5 년 전
부모
커밋
c8707628f6
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,