From 6476cf4c6bd30970662518df0bb4b4da85af40fd Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Mon, 28 May 2018 12:21:51 +0200 Subject: [PATCH] FEM: mesh netgen command, fix meshing while task panel is opened --- src/Mod/Fem/femcommands/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/femcommands/commands.py b/src/Mod/Fem/femcommands/commands.py index 30b685b283..6f151c9b5a 100644 --- a/src/Mod/Fem/femcommands/commands.py +++ b/src/Mod/Fem/femcommands/commands.py @@ -524,7 +524,7 @@ class _CommandFemMeshNetgenFromShape(CommandManager): FreeCADGui.doCommand("FemGui.getActiveAnalysis().addObject(FreeCAD.ActiveDocument.ActiveObject)") FreeCADGui.doCommand("FreeCADGui.ActiveDocument.setEdit(FreeCAD.ActiveDocument.ActiveObject.Name)") FreeCADGui.Selection.clearSelection() - FreeCAD.ActiveDocument.recompute() + # a recompute immediately starts meshing when task panel is opened, this is not intended class _CommandFemMeshPrintInfo(CommandManager):