Added JobTemplate support for ToolBit

This commit is contained in:
Markus Lampert
2019-10-29 22:11:10 -07:00
parent 09a6201e87
commit d625303b71
6 changed files with 102 additions and 73 deletions

View File

@@ -183,7 +183,7 @@ class ToolBitLibrary(object):
item = self.model.item(row, 0)
toolNr = int(item.data(PySide.QtCore.Qt.EditRole))
toolPath = item.data(_PathRole)
tools.append((toolNr, PathToolBitGui.CreateFrom(toolPath)))
tools.append((toolNr, PathToolBit.Factory.CreateFrom(toolPath)))
return tools
def toolDelete(self):