mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +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:
commit
5882d4fbd2
1 changed files with 1 additions and 1 deletions
|
@ -883,7 +883,7 @@ namespace IDE.ui
|
||||||
}
|
}
|
||||||
|
|
||||||
while (curIdx < listViewItem.GetChildCount())
|
while (curIdx < listViewItem.GetChildCount())
|
||||||
listViewItem.RemoveChildItemAt(curIdx);
|
listViewItem.RemoveChildItemAt(listViewItem.GetChildCount() - 1);
|
||||||
listViewItem.TryUnmakeParent();
|
listViewItem.TryUnmakeParent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue