block delete logic

This commit is contained in:
sliptonic
2026-03-14 09:17:48 -05:00
committed by Connor9220
parent 03f506c5a5
commit 6d8b98d471
+1 -1
View File
@@ -828,7 +828,7 @@ class ObjectOp(object):
self.commandlist.append(Path.Command("G0", {"Z": obj.ClearanceHeight.Value}))
# Add block delete annotations if enabled
if obj.BlockDelete:
if hasattr(obj, "BlockDelete") and obj.BlockDelete:
for command in self.commandlist:
annotations = command.Annotations
annotations["BlockDelete"] = True