From 3e6d0e775fe53c6139e303cadd565162e1900362 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 12 Jun 2022 14:01:19 +0200 Subject: [PATCH] PD: allow to clear the shape when nullifying the Support property --- src/Mod/PartDesign/App/ShapeBinder.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Mod/PartDesign/App/ShapeBinder.cpp b/src/Mod/PartDesign/App/ShapeBinder.cpp index 592dabbf49..aff1c4e746 100644 --- a/src/Mod/PartDesign/App/ShapeBinder.cpp +++ b/src/Mod/PartDesign/App/ShapeBinder.cpp @@ -125,6 +125,9 @@ App::DocumentObjectExecReturn* ShapeBinder::execute(void) { this->Placement.setValue(shape.getTransform()); this->Shape.setValue(shape); } + else { + this->Shape.setValue(shape); + } } return Part::Feature::execute();