Skip to content

Commit

Permalink
Qt: Fix global setting showing incorrectly for int-list
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jan 22, 2025
1 parent 89504b0 commit d395be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/duckstation-qt/settingwidgetbinder.h
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ static void BindWidgetToIntSetting(SettingsInterface* sif, WidgetType* widget, s

if (sif)
{
Accessor::makeNullableInt(widget, value);
Accessor::makeNullableInt(widget, value_to_index(value, values));

int sif_value;
if (sif->GetIntValue(section.c_str(), key.c_str(), &sif_value))
Expand Down

0 comments on commit d395be0

Please sign in to comment.