Disable parametric tools when there is no active document.

This commit is contained in:
Suzanne Soy 2021-01-28 00:58:16 +00:00
parent a0175805b3
commit ebdc5f3fcb

View File

@ -26,7 +26,7 @@ class ToolCommand():
def IsActive(self):
# return false to grey out the command in the menus, toolbars etc.
return True
return App.ActiveDocument is not None
def createCommands(appName):
for toolName in ExternalAppsList.apps[appName].Tools: