mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-23 15:03:47 +00:00
CNodeSelection: Make use of push_back over operator<<
This commit is contained in:
parent
43e4122461
commit
aacf10f74c
@ -32,7 +32,7 @@ public:
|
||||
if (IsAllowedType(pNode->NodeType()) && !pNode->IsSelected())
|
||||
{
|
||||
pNode->SetSelected(true);
|
||||
mSelectedNodes << pNode;
|
||||
mSelectedNodes.push_back(pNode);
|
||||
mCachedBounds.ExpandBounds(pNode->AABox());
|
||||
emit Modified();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user