summaryrefslogtreecommitdiff
path: root/gitk
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2008-01-09 14:19:47 +1100
committerPaul Mackerras <paulus@samba.org>2008-01-09 14:19:47 +1100
commitf0c842681936ffd684aac3f0d8340c99780d5b53 (patch)
treecfbf64de22066cf635e9b574a129e51bbe5b6a9c /gitk
parent9e8ad094bdd4b7b63d277f9a7c7b55e3019a2bab (diff)
downloadgit-f0c842681936ffd684aac3f0d8340c99780d5b53.tar.gz
[PATCH] gitk: use user-configured background in view definition dialog
Have the text fields in the view definition dialog (View->New view...) use the background color as configured through the preferences, instead of hard-coded 'white'. This was suggested by Paul Wise through http://bugs.debian.org/457124 Signed-off-by: Gerrit Pape <pape@smarden.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'gitk')
-rwxr-xr-xgitk6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitk b/gitk
index 4a923afdf3..801a5a9d86 100755
--- a/gitk
+++ b/gitk
@@ -1875,7 +1875,7 @@ proc editview {} {
}
proc vieweditor {top n title} {
- global newviewname newviewperm viewfiles
+ global newviewname newviewperm viewfiles bgcolor
toplevel $top
wm title $top $title
@@ -1889,12 +1889,12 @@ proc vieweditor {top n title} {
-text [mc "Commits to include (arguments to git rev-list):"]
grid $top.al - -sticky w -pady 5
entry $top.args -width 50 -textvariable newviewargs($n) \
- -background white
+ -background $bgcolor
grid $top.args - -sticky ew -padx 5
message $top.l -aspect 1000 \
-text [mc "Enter files and directories to include, one per line:"]
grid $top.l - -sticky w
- text $top.t -width 40 -height 10 -background white -font uifont
+ text $top.t -width 40 -height 10 -background $bgcolor -font uifont
if {[info exists viewfiles($n)]} {
foreach f $viewfiles($n) {
$top.t insert end $f