From 909cd46a9fc7d18bba7edf1ccc8733f1e03eb232 Mon Sep 17 00:00:00 2001 From: David Kaufman Date: Fri, 17 Oct 2025 15:08:10 -0400 Subject: [PATCH] fix bug opening job ui panel --- src/Mod/CAM/Path/Op/Adaptive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/CAM/Path/Op/Adaptive.py b/src/Mod/CAM/Path/Op/Adaptive.py index 7f0e449f7c..1e486f9683 100644 --- a/src/Mod/CAM/Path/Op/Adaptive.py +++ b/src/Mod/CAM/Path/Op/Adaptive.py @@ -1849,8 +1849,8 @@ class PathAdaptive(PathOp.ObjectOp): "Enable the experimental model awareness feature to respect 3D geometry and prevent cutting under overhangs", ), ) - obj.setEditorMode("OrderCutsByRegion", 0 if obj.ModelAwareExperiment else 2) - obj.setEditorMode("ZStockToLeave", 0 if obj.ModelAwareExperiment else 2) + obj.setEditorMode("OrderCutsByRegion", 2) + obj.setEditorMode("ZStockToLeave", 2) for n in self.propertyEnumerations(): setattr(obj, n[0], n[1])