From 90b265a8f339f46ae1bf3b592f88281fe6500a92 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 16 Aug 2026 16:49:33 -0500 Subject: [PATCH] Add hover tooltip for Met Location ID peek --- PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index 9c085f386..7433c9f7c 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -17,6 +17,7 @@ public sealed partial class PKMEditor : UserControl, IMainEditor { public bool IsInitialized { get; private set; } private readonly ToolTip SpeciesIDTip = new(); + private readonly ToolTip MetIDTip = new(); private readonly ToolTip NatureTip = new(); private readonly ToolTip TipPIDInfo = new(); private readonly ToolTip AffixedTip = new(); @@ -1910,6 +1911,7 @@ private void ValidateLocation(object sender, EventArgs e) Entity.MetLocation = (ushort)WinFormsUtil.GetIndex(CB_MetLocation); Entity.EggLocation = (ushort)WinFormsUtil.GetIndex(CB_EggLocation); UpdateLegality(); + MetIDTip.SetToolTip(CB_MetLocation, Entity.MetLocation.ToString("000")); } // Secondary Windows for Ribbons/Amie/Memories