mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
Add shift hotkey to apply current as TRs
no window popup required
This commit is contained in:
parent
981ed9a253
commit
627a236956
1 changed files with 7 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue