From 53c3af24447edc9728141cbd69c186a0df173180 Mon Sep 17 00:00:00 2001 From: Koseng <26673978+Koseng@users.noreply.github.com> Date: Tue, 20 Aug 2024 21:51:10 +0200 Subject: [PATCH] Fix customized preset in combobox (#1816) --- UI/Panels/Config/HubHopPresetPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Panels/Config/HubHopPresetPanel.cs b/UI/Panels/Config/HubHopPresetPanel.cs index c1ac6846..947cc3af 100644 --- a/UI/Panels/Config/HubHopPresetPanel.cs +++ b/UI/Panels/Config/HubHopPresetPanel.cs @@ -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);