Skip to content

Commit

Permalink
Fixing bug with subtype selection in Find object dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Feb 16, 2015
1 parent 30227ec commit d87797f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SonLVL/FindObjectsDialog.cs
Expand Up @@ -52,7 +52,7 @@ private void idSelect_ValueChanged(object sender, EventArgs e)
private void subtypeList_SelectedIndexChanged(object sender, EventArgs e)
{
if (subtypeList.SelectedIndices.Count > 0)
subtypeSelect.Value = subtypeList.SelectedIndices[0];
subtypeSelect.Value = (byte)subtypeList.SelectedItems[0].Tag;
}
}
}

0 comments on commit d87797f

Please sign in to comment.