From e47560003e7b943dcb510cc32409aba0868ff582 Mon Sep 17 00:00:00 2001 From: vginkeo Date: Mon, 29 Feb 2016 07:48:10 +0100 Subject: [PATCH] FEM: do not hide constraints for result view --- src/Mod/Fem/FemCommands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Fem/FemCommands.py b/src/Mod/Fem/FemCommands.py index c9bfb25088..91ab4a96dc 100644 --- a/src/Mod/Fem/FemCommands.py +++ b/src/Mod/Fem/FemCommands.py @@ -101,8 +101,8 @@ class FemCommands(object): def hide_parts_constraints_show_meshes(self): if FreeCAD.GuiUp: for acnstrmesh in FreeCAD.activeDocument().Objects: - if "Constraint" in acnstrmesh.TypeId: - acnstrmesh.ViewObject.Visibility = False + #if "Constraint" in acnstrmesh.TypeId: + # acnstrmesh.ViewObject.Visibility = False if "Mesh" in acnstrmesh.TypeId: aparttoshow = acnstrmesh.Name.replace("_Mesh","") for apart in FreeCAD.activeDocument().Objects: