mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
parent
dcdeb361f0
commit
19e9e4e761
1 changed files with 6 additions and 2 deletions
|
@ -817,7 +817,6 @@ namespace PKHeX.WinForms.Controls
|
||||||
if (CB_Form == sender && FieldsLoaded)
|
if (CB_Form == sender && FieldsLoaded)
|
||||||
pkm.AltForm = CB_Form.SelectedIndex;
|
pkm.AltForm = CB_Form.SelectedIndex;
|
||||||
|
|
||||||
UpdateGender();
|
|
||||||
Stats.UpdateStats();
|
Stats.UpdateStats();
|
||||||
// Repopulate Abilities if Species Form has different abilities
|
// Repopulate Abilities if Species Form has different abilities
|
||||||
SetAbilityList();
|
SetAbilityList();
|
||||||
|
@ -844,8 +843,13 @@ namespace PKHeX.WinForms.Controls
|
||||||
else if (PKX.GetGenderFromString(CB_Form.Text) < 2)
|
else if (PKX.GetGenderFromString(CB_Form.Text) < 2)
|
||||||
{
|
{
|
||||||
if (CB_Form.Items.Count == 2) // actually M/F; Pumpkaboo formes in German are S,M,L,XL
|
if (CB_Form.Items.Count == 2) // actually M/F; Pumpkaboo formes in German are S,M,L,XL
|
||||||
Label_Gender.Text = gendersymbols[PKX.GetGenderFromString(CB_Form.Text)];
|
{
|
||||||
|
pkm.Gender = CB_Form.SelectedIndex;
|
||||||
|
UpdateGender();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
UpdateGender();
|
||||||
|
|
||||||
if (ChangingFields)
|
if (ChangingFields)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue