From df7ee7217182f5b07804e7ad2e2f363c57f037bd Mon Sep 17 00:00:00 2001 From: neurallambda Date: Mon, 10 Nov 2025 08:42:32 -0800 Subject: [PATCH] Fix CAM job "no attribute Proxy" (#25034) --- src/Mod/CAM/Path/Main/Gui/Job.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Main/Gui/Job.py b/src/Mod/CAM/Path/Main/Gui/Job.py index 619c2f7a99..881b408075 100644 --- a/src/Mod/CAM/Path/Main/Gui/Job.py +++ b/src/Mod/CAM/Path/Main/Gui/Job.py @@ -302,7 +302,7 @@ class ViewProvider: # make sure the resource view providers are setup properly if prop == "Model" and self.obj.Model: for base in self.obj.Model.Group: - if base.ViewObject and base.ViewObject.Proxy: + if base.ViewObject and hasattr(base.ViewObject, "Proxy") and base.ViewObject.Proxy: base.ViewObject.Proxy.onEdit(_OpenCloseResourceEditor) if ( prop == "Stock"