mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
Fix a crash bug when loading Gen 3 saves on mono (#1815)
This commit is contained in:
parent
246b9d46a9
commit
32c650c053
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace PKHeX.WinForms
|
|||
InitializeComponent();
|
||||
CB_Game.DisplayMember = nameof(ComboItem.Text);
|
||||
CB_Game.ValueMember = nameof(ComboItem.Value);
|
||||
CB_Game.DataSource = new BindingSource(items, null);
|
||||
CB_Game.DataSource = new BindingSource(items.ToList(), null);
|
||||
CB_Game.SelectedIndex = 0;
|
||||
CB_Game.Focus();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue