diff options
author | Pat Thoyts <patthoyts@users.sourceforge.net> | 2010-03-12 18:31:47 +0000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2010-03-20 20:53:21 +1100 |
commit | 2e58c944cdaf63a23ebd35c43d31e639e1e23d9f (patch) | |
tree | 1c86f306739833d56a13bd5ed8b3996fd0dd1a8f /gitk | |
parent | gitk: Don't clobber "Remember this view" setting (diff) | |
download | tgif-2e58c944cdaf63a23ebd35c43d31e639e1e23d9f.tar.xz |
gitk: Avoid calling tk_setPalette on Windows
This just messes up the system colors. Leave them alone.
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'gitk')
-rwxr-xr-x | gitk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -10847,6 +10847,7 @@ proc setselbg {c} { # radiobuttons look bad. This chooses white for selectColor if the # background color is light, or black if it is dark. proc setui {c} { + if {[tk windowingsystem] eq "win32"} { return } set bg [winfo rgb . $c] set selc black if {[lindex $bg 0] + 1.5 * [lindex $bg 1] + 0.5 * [lindex $bg 2] > 100000} { |