let's try that again

This commit is contained in:
Sam Gondelman 2019-02-22 16:30:36 -08:00 committed by GitHub
parent 081e62a647
commit 30b6b7f21b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1422,7 +1422,7 @@ QUuid SpatiallyNestable::getEditSenderID() {
void SpatiallyNestable::bumpAncestorChainRenderableVersion(int depth) const {
if (depth > MAX_PARENTING_CHAIN_SIZE) {
breakParentingLoop();
// can't break the parent chain here, because it will call setParentID, which calls this
return;
}
@ -1432,4 +1432,4 @@ void SpatiallyNestable::bumpAncestorChainRenderableVersion(int depth) const {
if (success && parent) {
parent->bumpAncestorChainRenderableVersion(depth + 1);
}
}
}