mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 06:15:44 -05:00
Misc fixes
This commit is contained in:
@@ -2727,8 +2727,8 @@ private void setBoxNames()
|
||||
catch
|
||||
{
|
||||
CB_BoxSelect.Items.Clear();
|
||||
for (int i = 1; i < 31; i++)
|
||||
CB_BoxSelect.Items.Add("Box " + i);
|
||||
for (int i = 0; i < 31; i++)
|
||||
CB_BoxSelect.Items.Add("Box " + (i+1));
|
||||
}
|
||||
CB_BoxSelect.SelectedIndex = selectedbox; // restore selected box
|
||||
}
|
||||
|
||||
@@ -209,7 +209,7 @@ private void clickSet(object sender, EventArgs e)
|
||||
// Refresh database view.
|
||||
L_Count.Text = String.Format(Counter, Results.Count);
|
||||
FillPKXBoxes(SCR_Box.Value);
|
||||
Util.Alert("Added Pokémon from tabs to database", "Please refresh the search to ensure it shows up; it may be at the bottom of the results.");
|
||||
Util.Alert("Added Pokémon from tabs to database.", "Please refresh the search to ensure it shows up; it may be at the bottom of the results.");
|
||||
}
|
||||
private void populateComboBoxes()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user