Skip to content

Commit

Permalink
Fix customized preset in combobox (#1816)
Browse files Browse the repository at this point in the history
  • Loading branch information
Koseng authored Aug 20, 2024
1 parent 8c69b6b commit 53c3af2
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 53c3af2

Please sign in to comment.