Package: mercurial Version: 2.3.1-1 Severity: minor Tags: patch Since Tk 8.6b3, Tk uses Web palette as opposed to X11, so branch labels are almost unreadable, as Web green is #008000, not #00ff00.
A patch is attached to solve the issue. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 3.5-trunk-686-pae (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_GB.UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages mercurial depends on: ii libc6 2.13-35 ii mercurial-common 2.3.1-1 ii python 2.7.2-9 ii ucf 3.0016 Versions of packages mercurial recommends: ii openssh-client 1:6.0p1-2 Versions of packages mercurial suggests: ii meld 1.6.0-1 pn qct <none> ii tk8.4 [wish] 8.4.19-4 ii tk8.5 [wish] 8.5.10-1 ii tk8.6 [wish] 8.6.0~b3-1 ii vim 2:7.3.363-1 ii vim-gnome [vim] 2:7.3.363-1 -- no debconf information
--- Begin Message ---hgk: use X11 green instead of darker web green Tk 8.6b3 uses web colours, where green is defined as #008000, not #00ff00. diff --git a/contrib/hgk b/contrib/hgk --- a/contrib/hgk +++ b/contrib/hgk @@ -1248,7 +1248,7 @@ proc drawtags {id x xt y1} { } else { # draw a head or other ref if {[incr nheads -1] >= 0} { - set col green + set col "#00ff00" } else { set col "#ddddff" }
--- End Message ---

