mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Fix Secret Base editor button not appearing
Default state is not-visible instead of not-enabled; flip the correct property.
This commit is contained in:
parent
abc33893c8
commit
7aa96a3a16
1 changed files with 1 additions and 1 deletions
|
@ -810,7 +810,7 @@ namespace PKHeX
|
|||
GB_Daycare.Visible = SAV.Daycare > -1;
|
||||
GB_Fused.Visible = SAV.Fused > -1;
|
||||
GB_GTS.Visible = SAV.GTS > -1;
|
||||
B_OpenSecretBase.Enabled = SAV.SecretBase > -1;
|
||||
B_OpenSecretBase.Visible = SAV.SecretBase > -1;
|
||||
B_OpenPokepuffs.Enabled = SAV.Puff > -1;
|
||||
B_OUTPasserby.Enabled = SAV.PSS > -1;
|
||||
B_OpenBoxLayout.Enabled = SAV.BoxWallpapers > -1;
|
||||
|
|
Loading…
Reference in a new issue