Skip to content

Commit

Permalink
Fix customized preset in combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
Koseng committed Aug 15, 2024
1 parent 752e707 commit fa62d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/Panels/Config/HubHopPresetPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ private void TryToSelectOriginalPresetFromCode(string Code)
code = Code,
description = "This is a customized preset or custom code."
};
FilteredPresetList.Items.Add(CustomPreset);
FilteredPresetList.Items.Insert(0, CustomPreset);
FilteredPresetListChanged();
// We have found the original preset
InitializeComboBoxesWithPreset(CustomPreset);
Expand Down

0 comments on commit fa62d0b

Please sign in to comment.