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-Tag: v1.5.3-rc4~54^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef3192b8345ba73c1d7c86ed0a1f318f26d97dc6;p=git 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 7ce86b849e..995833fa52 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"}] }