aboutsummaryrefslogtreecommitdiff
path: root/gitk
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2007-07-22 22:05:30 +1000
committerPaul Mackerras <paulus@samba.org>2007-07-22 22:05:30 +1000
commitef3192b8345ba73c1d7c86ed0a1f318f26d97dc6 (patch)
tree5cafbc980f299169e83bef9a6611773fc06b2414 /gitk
parent8f4893639129acfc866c71583317090aa2a46eab (diff)
downloadgit-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-xgitk2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitk b/gitk
index 7ce86b849..995833fa5 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"}]
}