Qt: Fix incorrect value of combo postfx options

This commit is contained in:
Stenzek 2023-12-08 20:11:47 +10:00
parent b65d2748b4
commit 5c42d3906a
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -366,6 +366,7 @@ void PostProcessingShaderConfigWidget::createUi()
combo->setToolTip(tooltip);
for (const std::string& combo_option : option.choice_options)
combo->addItem(QString::fromStdString(combo_option));
combo->setCurrentIndex(option.value[0].int_value);
connect(combo, &QComboBox::currentIndexChanged, [this, &option](int index) {
option.value[0].int_value = index;
updateConfigForOption(option);