fixup! Disable parametric tools when there is no active document.
This commit is contained in:
parent
ebdc5f3fcb
commit
78d447f379
|
@ -22,11 +22,11 @@ class ToolCommand():
|
|||
}
|
||||
|
||||
def Activated(self):
|
||||
XternalAppsParametricTool.create(self.Tool.AppName, self.Tool.ToolName)
|
||||
XternalAppsParametricTool.CreateCommand(self.Tool.AppName, self.Tool.ToolName)
|
||||
|
||||
def IsActive(self):
|
||||
# return false to grey out the command in the menus, toolbars etc.
|
||||
return App.ActiveDocument is not None
|
||||
return FreeCAD.ActiveDocument is not None
|
||||
|
||||
def createCommands(appName):
|
||||
for toolName in ExternalAppsList.apps[appName].Tools:
|
||||
|
|
|
@ -1,15 +1,22 @@
|
|||
import FreeCAD as App
|
||||
import FreeCADGui
|
||||
#from xml.etree import ElementTree
|
||||
from lxml import etree
|
||||
import ExternalAppsList
|
||||
from ToolXML import *
|
||||
import re
|
||||
|
||||
def CreateCommand(appName, toolName):
|
||||
App.ActiveDocument.openTransaction('Create parametric %s from %s'%(toolName, appName))
|
||||
FreeCADGui.addModule("XternalAppsParametricTool")
|
||||
FreeCADGui.doCommand("XternalAppsParametricTool.create(%s, %s)"%(repr(appName), repr(toolName)))
|
||||
App.ActiveDocument.commitTransaction()
|
||||
return obj
|
||||
|
||||
def create(appName, toolName):
|
||||
name = appName + toolName
|
||||
obj = App.ActiveDocument.addObject("App::DocumentObjectGroupPython", name)
|
||||
XternalAppsParametricTool(obj, appName, toolName)
|
||||
return obj
|
||||
|
||||
# TODO: read-only/immutable
|
||||
typeToFreeCADTypeDict = {
|
||||
|
|
Loading…
Reference in New Issue
Block a user