- 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:
committed by
Marius Stanciu
parent
4309d1f8a7
commit
9231530e20
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user