From 81a5a6bc22c95c0d44dba34a0fadbfd21c4fe35a Mon Sep 17 00:00:00 2001 From: Sebastian Jahr Date: Fri, 3 Nov 2023 17:24:36 +0100 Subject: [PATCH] Revert implicit property inheritance (#502) --- core/src/container.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/container.cpp b/core/src/container.cpp index 1bf39e43..c586480d 100644 --- a/core/src/container.cpp +++ b/core/src/container.cpp @@ -365,10 +365,6 @@ void ContainerBase::insert(Stage::pointer&& stage, int before) { if (!stage) throw std::runtime_error(name() + ": received invalid stage pointer"); - if (stage->trajectoryExecutionInfo().controller_names.empty()) { - stage->setTrajectoryExecutionInfo(this->trajectoryExecutionInfo()); - } - StagePrivate* impl = stage->pimpl(); impl->setParent(this);