From 9f17cc974734c0ec95ef9832c7623fa44836a36d Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 5 Jun 2019 00:25:45 +0300 Subject: [PATCH] - small changes --- flatcamGUI/FlatCAMGUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index ac8c5266..ca8e16ae 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -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.") )