mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 20:13:06 +00:00
parent
48b0f0c6a3
commit
3618caa4e3
1 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,8 @@ public partial class BatchEditor : Form
|
|||
private Core.BatchEditor editor = new();
|
||||
private readonly EntityInstructionBuilder UC_Builder;
|
||||
|
||||
private static string LastUsedCommands = string.Empty;
|
||||
|
||||
public BatchEditor(PKM pk, SaveFile sav)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
@ -32,6 +34,9 @@ public partial class BatchEditor : Form
|
|||
SAV = sav;
|
||||
DragDrop += TabMain_DragDrop;
|
||||
DragEnter += TabMain_DragEnter;
|
||||
|
||||
RTB_Instructions.Text = LastUsedCommands;
|
||||
Closing += (_, _) => LastUsedCommands = RTB_Instructions.Text;
|
||||
}
|
||||
|
||||
private void B_Open_Click(object sender, EventArgs e)
|
||||
|
|
Loading…
Reference in a new issue