- fixed the display of status bar messages when they contain brackets

- in Panelize Tool - fixed the export when panelizing Excllon objects
- in Panelize Tool - remade the methods such that panelizing a Gerber object as Geometry panel will now hold all the Gerber apertures as Geometry tools and added a supplementary tool that holds the solid_geometry.
- in Panelize Tool - remade the methods such that panelizing a Geometry object as a Gerber panel will attempt to create polygons from Geometry
This commit is contained in:
Marius Stanciu
2020-12-03 00:56:16 +02:00
committed by Marius Stanciu
parent 4309d1f8a7
commit 9231530e20
3 changed files with 250 additions and 170 deletions

View File

@@ -2840,7 +2840,7 @@ class App(QtCore.QObject):
"""
# Type of message in brackets at the beginning of the message.
match = re.search(r"\[(.*)\](.*)", msg)
match = re.search(r"^\[(.*?)\](.*)", msg)
if match:
level = match.group(1)
msg_ = match.group(2)