- added a new signal allowing printing messages in statusbar without polluting the Tcl Shell; to be used in the future for low-ranking messages
This commit is contained in:
@@ -7,6 +7,10 @@ CHANGELOG for FlatCAM Evo beta
|
||||
|
||||
=================================================
|
||||
|
||||
19.06.2023
|
||||
|
||||
- added a new signal allowing printing messages in statusbar without polluting the Tcl Shell; to be used in the future for low-ranking messages
|
||||
|
||||
17.06.2023
|
||||
|
||||
- NCC Plugin: modified the previous change and now the simplification action is much bigger reducing the number of coordinates by a factor of 20 (20 times less)
|
||||
|
||||
@@ -218,6 +218,7 @@ class App(QtCore.QObject):
|
||||
inform = QtCore.pyqtSignal([str], [str, bool])
|
||||
# Handled by: App.info_shell() --> Print on the shell
|
||||
inform_shell = QtCore.pyqtSignal([str], [str, bool])
|
||||
inform_no_echo = QtCore.pyqtSignal(str)
|
||||
|
||||
app_quit = QtCore.pyqtSignal()
|
||||
|
||||
@@ -1178,6 +1179,7 @@ class App(QtCore.QObject):
|
||||
# signal for displaying messages in status bar
|
||||
self.inform[str].connect(self.info)
|
||||
self.inform[str, bool].connect(self.info)
|
||||
self.inform_no_echo[str].connect(lambda txt: self.info(msg=txt, shell_echo=False)) # noqa
|
||||
|
||||
# signals for displaying messages in the Tcl Shell are now connected in the ToolShell class
|
||||
|
||||
|
||||
Reference in New Issue
Block a user