AvaloniaUI / Avalonia.Controls.TreeDataGrid

A combined TreeView/DataGrid for Avalonia.
MIT License
266 stars 54 forks source link

Fix incorrect cast in TreeSelectionModelBase #282

Closed grokys closed 5 months ago

grokys commented 5 months ago

GetChildren is typed as an IEnumerable<T> but we were casting it to an IReadOnlyList<T>. This works for most cases, but we're not respecting the API.

This PR changes the code to handle the case where an actual enumerable is returned.