Add shift hotkey to apply current as TRs

no window popup required
This commit is contained in:
Kurt 2019-11-15 23:22:21 -08:00
parent 981ed9a253
commit 627a236956

View file

@ -1589,6 +1589,13 @@ namespace PKHeX.WinForms.Controls
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();