From eed8ec27df8702402e0cee6126ea054024dd5b1f Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Sun, 9 Mar 2014 19:44:36 -0300 Subject: [PATCH] Arch: Don't create a drawing view on section plane creation This was very heavy and often caused unnecessary computations. Adding a new Drawing view is now done manually, with the Draft to Drawing tool --- src/Mod/Arch/ArchSectionPlane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchSectionPlane.py b/src/Mod/Arch/ArchSectionPlane.py index 2824c3d4a..d4e8b02bb 100644 --- a/src/Mod/Arch/ArchSectionPlane.py +++ b/src/Mod/Arch/ArchSectionPlane.py @@ -86,7 +86,7 @@ class _CommandSectionPlane: FreeCAD.ActiveDocument.openTransaction(translate("Arch","Create Section Plane")) FreeCADGui.doCommand("import Arch") FreeCADGui.doCommand("section = Arch.makeSectionPlane("+ss+")") - FreeCADGui.doCommand("Arch.makeSectionView(section)") + #FreeCADGui.doCommand("Arch.makeSectionView(section)") FreeCAD.ActiveDocument.commitTransaction() FreeCAD.ActiveDocument.recompute()