We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd046da commit f19e306Copy full SHA for f19e306
src/ReaLTaiizor/Controls/ListBox/ForeverListBox.cs
@@ -54,7 +54,7 @@ public object[] ListItems
54
{
55
get
56
57
- return ListBx.Items.OfType<object>().ToArray();
+ return ListBx.Items.Cast<object>().OfType<object>().ToArray();
58
}
59
60
public object ListSelectedItem => ListBx.Items[SelectedIndex];
0 commit comments