Thanks for the great work on extending B-spline surface generation tools in FreeCAD. In my scenario I intend to call actions from Curves workbench programmatically as freecad macros.
When I create a new document, it comes some default workbench active. I need to switch to Curves. The following macro is executed:
`# -- coding: utf-8 --
import FreeCAD
import PartDesignGui
Gui.activateWorkbench("CurvesWorkbench")
`
- But then FreeCAD stalls, I run version 1.0.0 on OSX.
- If Curves workbench was once activated manually, the macro works fine.