summaryrefslogtreecommitdiff
path: root/gitk-git/gitk
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-03-21 01:05:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-03-21 01:05:10 (GMT)
commit257000c617cfdc99fb2916b81268a7e971c12ca6 (patch)
treefa337dd10424393c73e803d0563e2c578f8fe4fb /gitk-git/gitk
parent047057bb4159533b3323003f89160588c9e61fbd (diff)
parent22a713c72df8b6799c59287c50cee44c4a6db51e (diff)
downloadgit-257000c617cfdc99fb2916b81268a7e971c12ca6.zip
git-257000c617cfdc99fb2916b81268a7e971c12ca6.tar.gz
git-257000c617cfdc99fb2916b81268a7e971c12ca6.tar.bz2
Merge branch 'master' of git://ozlabs.org/~paulus/gitk
* 'master' of git://ozlabs.org/~paulus/gitk: gitk: Follow themed bgcolor in help dialogs gitk: fr.po: Sync translations with git gitk: Update French translation (311t) gitk: Update German translation gitk: Update Bulgarian translation (311t)
Diffstat (limited to 'gitk-git/gitk')
-rwxr-xr-xgitk-git/gitk8
1 files changed, 4 insertions, 4 deletions
diff --git a/gitk-git/gitk b/gitk-git/gitk
index 5f1255c..805a1c7 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk
@@ -3021,7 +3021,7 @@ proc bindall {event action} {
}
proc about {} {
- global uifont NS
+ global bgcolor NS
set w .about
if {[winfo exists $w]} {
raise $w
@@ -3036,7 +3036,7 @@ Gitk - a commit viewer for git
Copyright \u00a9 2005-2014 Paul Mackerras
Use and redistribute under the terms of the GNU General Public License"] \
- -justify center -aspect 400 -border 2 -bg white -relief groove
+ -justify center -aspect 400 -border 2 -bg $bgcolor -relief groove
pack $w.m -side top -fill x -padx 2 -pady 2
${NS}::button $w.ok -text [mc "Close"] -command "destroy $w" -default active
pack $w.ok -side bottom
@@ -3047,7 +3047,7 @@ Use and redistribute under the terms of the GNU General Public License"] \
}
proc keys {} {
- global NS
+ global bgcolor NS
set w .keys
if {[winfo exists $w]} {
raise $w
@@ -3103,7 +3103,7 @@ proc keys {} {
[mc "<%s-minus> Decrease font size" $M1T]
[mc "<F5> Update"]
" \
- -justify left -bg white -border 2 -relief groove
+ -justify left -bg $bgcolor -border 2 -relief groove
pack $w.m -side top -fill both -padx 2 -pady 2
${NS}::button $w.ok -text [mc "Close"] -command "destroy $w" -default active
bind $w <Key-Escape> [list destroy $w]