mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 10:15:41 -04:00
Qt: Fix incorrect value of combo postfx options
This commit is contained in:
parent
b65d2748b4
commit
5c42d3906a
@ -366,6 +366,7 @@ void PostProcessingShaderConfigWidget::createUi()
|
|||||||
combo->setToolTip(tooltip);
|
combo->setToolTip(tooltip);
|
||||||
for (const std::string& combo_option : option.choice_options)
|
for (const std::string& combo_option : option.choice_options)
|
||||||
combo->addItem(QString::fromStdString(combo_option));
|
combo->addItem(QString::fromStdString(combo_option));
|
||||||
|
combo->setCurrentIndex(option.value[0].int_value);
|
||||||
connect(combo, &QComboBox::currentIndexChanged, [this, &option](int index) {
|
connect(combo, &QComboBox::currentIndexChanged, [this, &option](int index) {
|
||||||
option.value[0].int_value = index;
|
option.value[0].int_value = index;
|
||||||
updateConfigForOption(option);
|
updateConfigForOption(option);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user