From 9c397cb38781a77ce698e36443ae1cb4d0db55a6 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Tue, 18 Oct 2022 12:36:29 +0200 Subject: [PATCH] Update point.py --- src/Mod/Draft/draftobjects/point.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/Draft/draftobjects/point.py b/src/Mod/Draft/draftobjects/point.py index f4d6e6e908..fda5800a74 100644 --- a/src/Mod/Draft/draftobjects/point.py +++ b/src/Mod/Draft/draftobjects/point.py @@ -60,7 +60,8 @@ class Point(DraftObject): import Part shape = Part.Vertex(App.Vector(0, 0, 0)) obj.Shape = shape - obj.Placement.Base = App.Vector(obj.X, obj.Y, obj.Z) + if obj.Placement.Base != App.Vector(obj.X, obj.Y, obj.Z): + obj.Placement.Base = App.Vector(obj.X, obj.Y, obj.Z) def onChanged(self, obj, prop): if prop == "Placement" \