mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Add optional focusing when loading to tabs
This commit is contained in:
parent
480622388c
commit
b352de254e
1 changed files with 3 additions and 2 deletions
|
@ -919,7 +919,7 @@ namespace PKHeX
|
|||
}
|
||||
}
|
||||
}
|
||||
public void populateFields(byte[] data)
|
||||
public void populateFields(byte[] data, bool focus = true)
|
||||
{
|
||||
pk6 = new PK6(data);
|
||||
if (init & !PKX.verifychk(pk6.Data))
|
||||
|
@ -928,6 +928,7 @@ namespace PKHeX
|
|||
// Reset a little.
|
||||
init = false;
|
||||
CAL_EggDate.Value = new DateTime(2000, 01, 01);
|
||||
if (focus)
|
||||
Tab_Main.Focus();
|
||||
|
||||
// Do first
|
||||
|
|
Loading…
Reference in a new issue