From 11c4fe446e2f3eef72edfc1743d456b5c92a87bd Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 21 Feb 2026 19:38:02 -0600 Subject: [PATCH] Fix met location highlight on startup Finally found the right place to put this --- PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index 1f8e489f9..28bec31ab 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -1324,6 +1324,9 @@ static int GetWidth(IReadOnlyCollection items, Font f) { ValidateChildren(); // hacky validation forcing } + + CB_MetLocation.SelectionLength = 0; + CB_EggLocation.SelectionLength = 0; } private void UpdateExtraByteValue(object sender, EventArgs e)