Browse Source

- lightened the hue of the color for 'success' messages printed in the Tcl Shell browser

Marius 5 năm trước cách đây
mục cha
commit
cb52f1c10a
2 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 5 0
      README.md
  2. 1 1
      flatcamTools/ToolShell.py

+ 5 - 0
README.md

@@ -9,6 +9,10 @@ CAD program, and create G-Code for Isolation routing.
 
 =================================================
 
+14.04.2020 
+
+- lightened the hue of the color for 'success' messages printed in the Tcl Shell browser
+
 13.04.2020 
 
 - added the outname parameter for the geocutout Tcl command
@@ -22,6 +26,7 @@ CAD program, and create G-Code for Isolation routing.
 - the Show Shell in Edit -> Preferences will now toggle the Tcl shell based on the current status of the Tcl Shell
 - updated the Tcl command Isolate help for follow parameter 
 - updated DrillCncJob Tcl Command with new parameters and fixed it to work in the new format of the Excellon methods
+- fixed issue #399
 - changed CncJob Tcl Command parameter 'depthperpass' to a shorter 'dpp'
 
 11.04.2020 

+ 1 - 1
flatcamTools/ToolShell.py

@@ -102,7 +102,7 @@ class TermWidget(QWidget):
         elif style == 'warning':
             text = '<span style="font-weight: bold; color: #f4b642;">%s</span>' % text
         elif style == 'success':
-            text = '<span style="font-weight: bold; color: #084400;">%s</span>' % text
+            text = '<span style="font-weight: bold; color: #15b300;">%s</span>' % text
         elif style == 'selected':
             text = ''
         else: