Skip to content

Commit

Permalink
[PATCH] gitk: use user-configured background in view definition dialog
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Gerrit Pape authored and paulusmack committed Jan 9, 2008
1 parent 9e8ad09 commit f0c8426
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gitk
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f0c8426

Please sign in to comment.