- QRCode Tool - a SVG object is generated and plotted on screen having the QRCode data

- fixed an import error in Distance Tool
- fixed the Toggle Grid Lines functionality
This commit is contained in:
Marius Stanciu 2019-10-23 22:59:10 +03:00 committed by Marius
parent c8a97e69d0
commit d14b4139cb
2 changed files with 9 additions and 4 deletions

View File

@ -6114,7 +6114,7 @@ class App(QtCore.QObject):
if theme == 'white':
self.plotcanvas.grid._grid_color_fn['color'] = Color('dimgray').rgba
else:
self.plotcanvas.grid._grid_color_fn['color'] = Color('#FFFFFFFF').rgba
self.plotcanvas.grid._grid_color_fn['color'] = Color('#dededeff').rgba
else:
self.plotcanvas.axes.grid(True)
try:
@ -6126,7 +6126,7 @@ class App(QtCore.QObject):
else:
if self.is_legacy is False:
if theme == 'white':
self.plotcanvas.grid._grid_color_fn['color'] = Color('#dededeff').rgba
self.plotcanvas.grid._grid_color_fn['color'] = Color('#ffffffff').rgba
else:
self.plotcanvas.grid._grid_color_fn['color'] = Color('#000000FF').rgba
else:

View File

@ -8,14 +8,19 @@ Among other things, it can take a Gerber file generated by your favorite PCB
CAD program, and create G-Code for Isolation routing.
=================================================
23.10.2019
- QRCode Tool - a SVG object is generated and plotted on screen having the QRCode data
- fixed an import error in Distance Tool
- fixed the Toggle Grid Lines functionality
22.10.2019
- working on the Calibrate Excellon Tool
- finished the GUI layout for the Calibrate Excellon Tool
- start working on QRCode Tool - not working yet
- start working on QRCode Tool - serching for alternatives
- QRCode Tool - a SVG object is generated and plotted on screen having the QRCode data
- fixed an import error in Distance Tool
21.10.2019