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