- small changes

This commit is contained in:
Marius Stanciu 2019-06-05 00:25:45 +03:00
parent 150bb9e999
commit 9f17cc9747
1 changed files with 2 additions and 2 deletions

View File

@ -2697,7 +2697,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
# we do this so we can reuse the following keys while inside a Tool
# the above keys are general enough so were left outside
if self.app.grb_editor.active_tool is not None and self.grb_select_btn.isChecked() == False:
if self.app.grb_editor.active_tool is not None and self.grb_select_btn.isChecked() is False:
response = self.app.grb_editor.active_tool.on_key(key=key)
if response is not None:
self.app.inform.emit(response)
@ -5119,7 +5119,7 @@ class ExcellonEditorPrefGroupUI(OptionsGroupUI):
# Circular Drill Array direction
self.drill_circular_direction_label = QtWidgets.QLabel(_('Circular Dir.:'))
self.drill_circular_direction_label.setToolTip(
_("Direction for circular array."
_("Direction for circular array.\n"
"Can be CW = clockwise or CCW = counter clockwise.")
)