Skip to content

Commit f19e306

Browse files
authored
Update ForeverListBox.cs
1 parent dd046da commit f19e306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ReaLTaiizor/Controls/ListBox/ForeverListBox.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public object[] ListItems
5454
{
5555
get
5656
{
57-
return ListBx.Items.OfType<object>().ToArray();
57+
return ListBx.Items.Cast<object>().OfType<object>().ToArray();
5858
}
5959
}
6060
public object ListSelectedItem => ListBx.Items[SelectedIndex];

0 commit comments

Comments
 (0)