Browse code

Gentler highlight color.

From: Marius Gedminas <marius@gedmin.as>

Jose.R.Fonseca authored on 13/07/2008 03:22:21
Showing 1 changed files

  • xdot.py index 23c76f8..58ed3a4 100755
... ...
@@ -71,7 +71,7 @@ class Pen:
71 71
     def highlighted(self):
72 72
         pen = self.copy()
73 73
         pen.color = (1, 0, 0, 1)
74
-        pen.fillcolor = (.7, .2, .2, 1)
74
+        pen.fillcolor = (1, .8, .8, 1)
75 75
         return pen
76 76
 
77 77