From: Paul Mackerras Date: Sun, 22 Jul 2007 12:05:30 +0000 (+1000) Subject: gitk: Make the fake commit for the index changes green rather than magenta X-Git-Url: http://privyetmir.co.uk/gitweb?a=commitdiff_plain;h=ef3192b8345ba73c1d7c86ed0a1f318f26d97dc6;p=gitk gitk: Make the fake commit for the index changes green rather than magenta The magenta was a bit close in color to the normal blue commits. This makes them green instead as suggested by Linus. Signed-off-by: Paul Mackerras --- diff --git a/gitk b/gitk index 7ce86b8..995833f 100755 --- a/gitk +++ b/gitk @@ -3403,7 +3403,7 @@ proc drawcmittext {id row col} { if {$id eq $nullid} { set ofill red } elseif {$id eq $nullid2} { - set ofill magenta + set ofill green } else { set ofill [expr {$listed != 0? "blue": "white"}] }