From 78301fd9477f0363767ab9d8d40849ac9b6308c5 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 16 Feb 2017 15:59:45 -0800 Subject: [PATCH] call getParentPointer when parent ID changes to update children --- libraries/shared/src/SpatiallyNestable.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/shared/src/SpatiallyNestable.cpp b/libraries/shared/src/SpatiallyNestable.cpp index ddc3f416e0..75574967e4 100644 --- a/libraries/shared/src/SpatiallyNestable.cpp +++ b/libraries/shared/src/SpatiallyNestable.cpp @@ -70,6 +70,9 @@ void SpatiallyNestable::setParentID(const QUuid& parentID) { _parentKnowsMe = false; } }); + + bool success = false; + getParentPointer(success); } Transform SpatiallyNestable::getParentTransform(bool& success, int depth) const {