From 2f06decce5e48db326f3226891119036fcb49fff Mon Sep 17 00:00:00 2001 From: vocx-fc Date: Tue, 17 Sep 2019 13:05:44 -0500 Subject: [PATCH] Arch: ArchCommands, change the color of the vertices of the subcomponent when using Arch Remove, just like the line color and shape color are changed. --- src/Mod/Arch/ArchCommands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/Arch/ArchCommands.py b/src/Mod/Arch/ArchCommands.py index 87780c46d6..e3ff6900e2 100644 --- a/src/Mod/Arch/ArchCommands.py +++ b/src/Mod/Arch/ArchCommands.py @@ -275,6 +275,8 @@ def setAsSubcomponent(obj): color = getDefaultColor("Construction") if hasattr(obj.ViewObject,"LineColor"): obj.ViewObject.LineColor = color + if hasattr(obj.ViewObject, "PointColor"): + obj.ViewObject.PointColor = color if hasattr(obj.ViewObject,"ShapeColor"): obj.ViewObject.ShapeColor = color if hasattr(obj.ViewObject,"Transparency"):