CNodeSelection: Make use of push_back over operator<<

This commit is contained in:
Lioncash 2020-07-10 16:02:29 -04:00
parent 43e4122461
commit aacf10f74c
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}