diff --git a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs index 967fcc91e..af2e920fb 100644 --- a/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs +++ b/PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs @@ -1589,6 +1589,13 @@ private void OpenHistory(object sender, EventArgs e) private void B_Records_Click(object sender, EventArgs e) { + if (ModifierKeys == Keys.Shift) + { + Entity.SetRelearnMoves(Entity.Moves); + UpdateLegality(); + return; + } + using var form = new TechRecordEditor(Entity); form.ShowDialog(); UpdateLegality();