- Geometry Editor - added the label Beginner/Advanced for uniformity within the app

- minor string changes
This commit is contained in:
Marius Stanciu
2020-12-25 21:46:18 +02:00
committed by Marius
parent 09acabc0c1
commit 1495624a9e
7 changed files with 16 additions and 8 deletions

View File

@@ -172,7 +172,7 @@ class GerberObject(FlatCAMObj, Gerber):
# Show/Hide Advanced Options
if self.app.defaults["global_app_level"] == 'b':
self.ui.level.setText('<span style="color:green;"><b>%s</b></span>' % _('Basic'))
self.ui.level.setText('<span style="color:green;"><b>%s</b></span>' % _('Beginner'))
self.ui.apertures_table_label.hide()
self.ui.aperture_table_visibility_cb.hide()
@@ -1560,7 +1560,7 @@ class GerberObject(FlatCAMObj, Gerber):
try:
grb_final.options[option] = grb.options[option]
except KeyError:
self.app.log.warning("Failed to copy option.", option)
log.warning("Failed to copy option.", option)
try:
for geos in grb.solid_geometry: