From 06e0fb4c19313ad2a9ec98b48019e54c76425133 Mon Sep 17 00:00:00 2001 From: tarman3 Date: Thu, 23 Oct 2025 15:16:02 +0300 Subject: [PATCH] CAM: LeadInOut - Fix isActive() --- src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py b/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py index 12ccb096cf..9ffb57ff1c 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py +++ b/src/Mod/CAM/Path/Dressup/Gui/LeadInOut.py @@ -1257,7 +1257,7 @@ class CommandPathDressupLeadInOut: return False if not selection[0].isDerivedFrom("Path::Feature"): return False - if selection.Name.startswith("Job"): + if selection[0].Name.startswith("Job"): return False return True