Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
qhy040404 committed May 8, 2023
1 parent 57b3c0d commit a56d647
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ui/Generator_Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public Generator_Form()

private void area_comboBox_SelectedIndexChanged(object sender, EventArgs e)
{
if (area_comboBox.SelectedIndex == -1) return;
room_comboBox.Items.Clear();
room_comboBox.Items.AddRange(Constants.libraries[area_comboBox.Text]);
}
Expand Down

0 comments on commit a56d647

Please sign in to comment.