diff --git a/Code/IO/Config.cs b/Code/IO/Config.cs index 19c80fe..5258adf 100644 --- a/Code/IO/Config.cs +++ b/Code/IO/Config.cs @@ -195,6 +195,9 @@ public static void SaveComboxIndex(ComboBox comboBox) public static void LoadGuiElement(ComboBox comboBox) { comboBox.Text = Get(comboBox.Name); + + if (comboBox.DropDownStyle == ComboBoxStyle.DropDownList && comboBox.SelectedIndex < 0) + comboBox.SelectedIndex = 0; } public static void LoadGuiElement(TextBox textbox)