- the status bar messages that are echoed in the Tcl Shell will no longer have all text colored but only the identifier

This commit is contained in:
Marius Stanciu
2020-04-24 06:59:49 +03:00
committed by Marius
parent b569fa1748
commit 26dd29e7dd
4 changed files with 26 additions and 9 deletions

View File

@@ -2561,8 +2561,8 @@ class App(QtCore.QObject):
self.shell.setWindowIcon(self.ui.app_icon)
self.shell.setWindowTitle("FlatCAM Shell")
self.shell.resize(*self.defaults["global_shell_shape"])
self.shell.append_output("FlatCAM %s - " % self.version)
self.shell.append_output(_("Type >help< to get started\n\n"))
self.shell._append_to_browser('in', "FlatCAM %s - " % self.version)
self.shell.append_output('%s\n\n' % _("Type >help< to get started"))
self.ui.shell_dock.setWidget(self.shell)