1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-07 19:18:19 +02:00

Merge pull request #2258 from m910q/classview-pop-children

Optimization: Pop unused children in class view instead of removing from specific index
This commit is contained in:
Brian Fiete 2025-05-28 13:26:18 +02:00 committed by GitHub
commit 5882d4fbd2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -883,7 +883,7 @@ namespace IDE.ui
}
while (curIdx < listViewItem.GetChildCount())
listViewItem.RemoveChildItemAt(curIdx);
listViewItem.RemoveChildItemAt(listViewItem.GetChildCount() - 1);
listViewItem.TryUnmakeParent();
}