From f2f50f9914e0289871a3ee1b70ef7a2905cd200a Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Thu, 19 Feb 2026 15:51:54 -0500 Subject: [PATCH] fix: set bend line entity color to ByLayer Bend lines retained their original explicit color (white) from SolidWorks after being moved to the BEND layer. Now set to ByLayer so they inherit the layer's yellow color. Co-Authored-By: Claude Opus 4.6 --- EtchBendLines/Etcher.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EtchBendLines/Etcher.cs b/EtchBendLines/Etcher.cs index cf019da..af620d2 100644 --- a/EtchBendLines/Etcher.cs +++ b/EtchBendLines/Etcher.cs @@ -100,10 +100,11 @@ namespace EtchBendLines var doc = LoadDocument(filePath); var bends = ExtractBends(doc); - // Ensure all bend lines are on the BEND layer + // Ensure all bend lines are on the BEND layer with ByLayer color foreach (var bend in bends) { bend.Line.Layer = BendLayer; + bend.Line.Color = Color.ByLayer; } var upBends = bends.Where(b => b.Direction == BendDirection.Up);