diff options
author | Paul Mackerras <paulus@samba.org> | 2007-07-22 22:05:30 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-22 22:05:30 +1000 |
commit | ef3192b8345ba73c1d7c86ed0a1f318f26d97dc6 (patch) | |
tree | 5cafbc980f299169e83bef9a6611773fc06b2414 /gitk | |
parent | 8f4893639129acfc866c71583317090aa2a46eab (diff) | |
download | git-ef3192b8345ba73c1d7c86ed0a1f318f26d97dc6.tar.gz git-ef3192b8345ba73c1d7c86ed0a1f318f26d97dc6.tar.xz |
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 <paulus@samba.org>
Diffstat (limited to 'gitk')
-rwxr-xr-x | gitk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"}] } |