From 2d0ea65f1b28cf291c8e14a559cb25ab2c4c38cb Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sun, 15 Jan 2023 15:25:20 +0200 Subject: [PATCH] - minor change --- appGUI/MainGUI.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appGUI/MainGUI.py b/appGUI/MainGUI.py index 5b748e07..29888602 100644 --- a/appGUI/MainGUI.py +++ b/appGUI/MainGUI.py @@ -2945,7 +2945,7 @@ class MainGUI(QtWidgets.QMainWindow): def keyPressEvent(self, event): """ Key event handler for the entire app. - Some of the key events are also treated locally in the FlatCAM editors + Some key events are also treated locally in the FlatCAM editors :param event: QT event :return: @@ -5133,8 +5133,8 @@ class ShortcutsTab(QtWidgets.QWidget): _('Esc'), _("Deselects all objects") ) - self.app_sh_msg = self.app_sh_title + self.app_sh_no_mod + self.app_sh_ctrl_mod + self.app_sh_shift_mod + \ - self.app_sh_alt_mod + self.app_sh_combo_mod + self.app_sh_div + self.app_sh_msg = self.app_sh_title + self.app_sh_no_mod + self.app_sh_ctrl_mod \ + + self.app_sh_shift_mod + self.app_sh_alt_mod + self.app_sh_combo_mod + self.app_sh_div self.sh_app = QtWidgets.QTextEdit() self.sh_app.setTextInteractionFlags(QtCore.Qt.TextInteractionFlag.NoTextInteraction)