From 937296d9b1da406886f931dfad34eb0ae50a5699 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sun, 15 May 2022 01:30:02 +0300 Subject: [PATCH] - minor change --- appGUI/GUIElements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appGUI/GUIElements.py b/appGUI/GUIElements.py index 1df1869a..518033d8 100644 --- a/appGUI/GUIElements.py +++ b/appGUI/GUIElements.py @@ -4706,7 +4706,7 @@ class _BrowserTextEdit(QTextEdit): def clear(self): QTextEdit.clear(self) - text = "!FlatCAM %s? - %s" % (self.version, _("Type >help< to get started")) + text = "!FlatCAM Evo %s? - %s" % (self.version, _("Type >help< to get started")) text = html.escape(text) # hack so I can make text bold because the escape method will replace the '<' and '>' signs with html code text = text.replace('!', '')