From 7785d101e8df246b920290733de0e532013b6fe4 Mon Sep 17 00:00:00 2001 From: David Kaufman Date: Fri, 11 Aug 2023 21:58:59 -0400 Subject: [PATCH] [Path] Make RampDressup accept other dressups as its base operation --- src/Mod/Path/Path/Dressup/Gui/RampEntry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/Path/Dressup/Gui/RampEntry.py b/src/Mod/Path/Path/Dressup/Gui/RampEntry.py index 697dd87501..e365f3b6bf 100644 --- a/src/Mod/Path/Path/Dressup/Gui/RampEntry.py +++ b/src/Mod/Path/Path/Dressup/Gui/RampEntry.py @@ -203,7 +203,7 @@ class ObjectDressup: if not obj.Base.Path: return - if not obj.Base.Active: + if hasattr(obj.Base, 'Active') and not obj.Base.Active: path = Path.Path("(inactive operation)") obj.Path = path return