- modified the way the status bar icon is set

- Drilling Tool - fixed missing feedrate code when the toolchange is Off
- AppTextEditor - working on syntax highlighting
- App - trying to speed up the new project creation
- Tcl Shell - Browser Edit - added Undo/Redo, Cut and Delete selection
- replace all the exec_() calls with exec() (except one situation in Tcl where I'm not sure of the effect)
This commit is contained in:
Marius Stanciu
2020-12-20 16:56:14 +02:00
committed by Marius
parent 88b4a4dbba
commit 3a97cd3880
13 changed files with 467 additions and 140 deletions

View File

@@ -112,7 +112,7 @@ def on_language_apply_click(app, restart=False):
bt_no = msgbox.addButton(_("No"), QtWidgets.QMessageBox.NoRole)
msgbox.setDefaultButton(bt_yes)
msgbox.exec_()
msgbox.exec()
response = msgbox.clickedButton()
if response == bt_no:
@@ -214,7 +214,7 @@ def restart_program(app, ask=None):
msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole)
msgbox.setDefaultButton(bt_yes)
msgbox.exec_()
msgbox.exec()
response = msgbox.clickedButton()
if response == bt_yes: