- optimized GUI in Alignment Tool

This commit is contained in:
Marius Stanciu 2020-06-07 23:34:33 +03:00 committed by Marius
parent 9c81991d3d
commit c915ea8f6d
2 changed files with 5 additions and 7 deletions

View File

@ -19,6 +19,7 @@ CHANGELOG for FlatCAM beta
- made sure the the GUI settings are cleared on each new install
- added a new signal that is triggered by change in visibility for the Shell Dock and will change the status of the shell label in the status bar. In this way the label will really be changed each time the shell is toggled
- optimized the GUI in Film Tool
- optimized GUI in Alignment Tool
6.06.2020

View File

@ -72,7 +72,7 @@ class AlignObjects(AppTool):
self.type_obj_radio = RadioSet([
{"label": _("Gerber"), "value": "grb"},
{"label": _("Excellon"), "value": "exc"},
], orientation='vertical', stretch=False)
])
grid0.addWidget(self.type_obj_radio, 3, 0, 1, 2)
@ -95,7 +95,7 @@ class AlignObjects(AppTool):
grid0.addWidget(QtWidgets.QLabel(''), 6, 0, 1, 2)
self.aligned_label = QtWidgets.QLabel('<b>%s:</b>' % _("TARGET object"))
self.aligned_label = QtWidgets.QLabel('<b>%s:</b>' % _("DESTINATION object"))
self.aligned_label.setToolTip(
_("Specify the type of object to be aligned to.\n"
"It can be of type: Gerber or Excellon.\n"
@ -108,7 +108,7 @@ class AlignObjects(AppTool):
self.type_aligner_obj_radio = RadioSet([
{"label": _("Gerber"), "value": "grb"},
{"label": _("Excellon"), "value": "exc"},
], orientation='vertical', stretch=False)
])
grid0.addWidget(self.type_aligner_obj_radio, 8, 0, 1, 2)
@ -142,10 +142,7 @@ class AlignObjects(AppTool):
[
{'label': _('Single Point'), 'value': 'sp'},
{'label': _('Dual Point'), 'value': 'dp'}
],
orientation='vertical',
stretch=False
)
])
grid0.addWidget(self.a_type_lbl, 12, 0, 1, 2)
grid0.addWidget(self.a_type_radio, 13, 0, 1, 2)