mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-09 03:47:54 -05:00
Fix a crash bug when loading Gen 3 saves on mono (#1815)
This commit is contained in:
@@ -13,7 +13,7 @@ public SAV_GameSelect(IEnumerable items)
|
||||
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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user