- small update

This commit is contained in:
Marius Stanciu 2019-10-25 01:30:23 +03:00 committed by Marius
parent dfb8d21d1c
commit 7181d55368
2 changed files with 4 additions and 3 deletions

View File

@ -13,6 +13,7 @@ CAD program, and create G-Code for Isolation routing.
- QRCode Tool: added ability to add negative QRCodes (perhaps they can be isolated on copper?); added a clear area surrounding the QRCode in case it is dropped on a copper pour (region); fixed the Gerber export
- QRCode Tool: all parameters are hard-coded for now
- small update
24.10.2019

View File

@ -180,9 +180,9 @@ class QRCode(FlatCAMTool):
{'label': _('Positive'), 'value': 'pos'}])
self.pol_radio.setToolTip(
_("Choose the type of QRCode to be created.\n"
"If added on a Silkscreen Gerber you may add\n"
"it as positive. If you add it to a Copper\n"
"Gerber then perhaps you can add it as positive.")
"If added on a Silkscreen Gerber file the QRCode may\n"
"be added as positive. If it is added to a Copper Gerber\n"
"file then perhaps the QRCode can be added as negative.")
)
grid_lay.addWidget(self.pol_label, 7, 0)
grid_lay.addWidget(self.pol_radio, 7, 1)