mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +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 Core.BatchEditor editor = new();
|
||||||
private readonly EntityInstructionBuilder UC_Builder;
|
private readonly EntityInstructionBuilder UC_Builder;
|
||||||
|
|
||||||
|
private static string LastUsedCommands = string.Empty;
|
||||||
|
|
||||||
public BatchEditor(PKM pk, SaveFile sav)
|
public BatchEditor(PKM pk, SaveFile sav)
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
@ -32,6 +34,9 @@ public partial class BatchEditor : Form
|
||||||
SAV = sav;
|
SAV = sav;
|
||||||
DragDrop += TabMain_DragDrop;
|
DragDrop += TabMain_DragDrop;
|
||||||
DragEnter += TabMain_DragEnter;
|
DragEnter += TabMain_DragEnter;
|
||||||
|
|
||||||
|
RTB_Instructions.Text = LastUsedCommands;
|
||||||
|
Closing += (_, _) => LastUsedCommands = RTB_Instructions.Text;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void B_Open_Click(object sender, EventArgs e)
|
private void B_Open_Click(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in a new issue