- fixed the PDF import tool to work with files generated by the Microsoft PDF printer (chained subpaths)
- in PDF import tool added support for paths filled and at the same time stroked ('B' and 'B*'commands)
- added a shortcut key for PDF Import Tool (ALT+Q) and updated the Shortcut list (also with the 'T' and 'R' keys for Gerber Editor where they control the bend in Track and Region tool and the 'M' and 'D' keys for Add Arc tool in Geometry Editor)
This commit is contained in:
@@ -95,7 +95,7 @@ class App(QtCore.QObject):
|
||||
|
||||
# Version
|
||||
version = 8.914
|
||||
version_date = "2019/04/20"
|
||||
version_date = "2019/04/22"
|
||||
beta = True
|
||||
|
||||
# current date now
|
||||
@@ -2003,15 +2003,16 @@ class App(QtCore.QObject):
|
||||
self.properties_tool = Properties(self)
|
||||
self.properties_tool.install(icon=QtGui.QIcon('share/properties32.png'), pos=self.ui.menuoptions)
|
||||
|
||||
self.pdf_tool = ToolPDF(self)
|
||||
self.pdf_tool.install(icon=QtGui.QIcon('share/pdf32.png'), pos=self.ui.menufileimport,
|
||||
separator=True)
|
||||
|
||||
self.image_tool = ToolImage(self)
|
||||
self.image_tool.install(icon=QtGui.QIcon('share/image32.png'), pos=self.ui.menufileimport,
|
||||
separator=True)
|
||||
self.pcb_wizard_tool = PcbWizard(self)
|
||||
self.pcb_wizard_tool.install(icon=QtGui.QIcon('share/drill32.png'), pos=self.ui.menufileimport)
|
||||
|
||||
self.pdf_tool = ToolPDF(self)
|
||||
self.pdf_tool.install(icon=QtGui.QIcon('share/pdf32.png'), pos=self.ui.menufileimport)
|
||||
|
||||
self.log.debug("Tools are installed.")
|
||||
|
||||
def remove_tools(self):
|
||||
|
||||
Reference in New Issue
Block a user