mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
Fix encounter browser startup
This commit is contained in:
parent
8129e91694
commit
473c4adaa9
1 changed files with 3 additions and 2 deletions
|
@ -184,11 +184,12 @@ namespace PKHeX.WinForms
|
|||
CB_GameOrigin.SelectedIndex = 0;
|
||||
|
||||
RTB_Instructions.Clear();
|
||||
if (sender == null)
|
||||
return; // still starting up
|
||||
foreach (var chk in TypeFilters.Controls.OfType<CheckBox>())
|
||||
chk.Checked = true;
|
||||
|
||||
if (sender != null)
|
||||
System.Media.SystemSounds.Asterisk.Play();
|
||||
System.Media.SystemSounds.Asterisk.Play();
|
||||
}
|
||||
|
||||
// View Updates
|
||||
|
|
Loading…
Reference in a new issue