summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Mark Hills <mark@pogo.org.uk>2010-01-13 20:40:19 +0000
committerLibravatar Paul Mackerras <paulus@samba.org>2010-03-20 20:53:21 +1100
commit0933b04e5204674784b3ff7bcff68b663e633f8b (patch)
treee09b418573e5594abc9626098f02ba3584e4a1fe
parentgitk: Remove forced use of sans-serif font (diff)
downloadtgif-0933b04e5204674784b3ff7bcff68b663e633f8b.tar.xz
gitk: Set the font for all spinbox widgets
Use the X resources to set the font, removing the need to set the font for specific widgets. Signed-off-by: Mark Hills <mark@pogo.org.uk> Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-xgitk3
1 files changed, 2 insertions, 1 deletions
diff --git a/gitk b/gitk
index 59970aff39..f1e70ad047 100755
--- a/gitk
+++ b/gitk
@@ -1879,6 +1879,7 @@ proc setoptions {} {
option add *Message.font uifont startupFile
option add *Entry.font uifont startupFile
option add *Labelframe.font uifont startupFile
+ option add *Spinbox.font textfont startupFile
}
# Make a menu and submenus.
@@ -2229,7 +2230,7 @@ proc makewindow {} {
-command changediffdisp -variable diffelide -value {1 0}
${NS}::label .bleft.mid.labeldiffcontext -text " [mc "Lines of context"]: "
pack .bleft.mid.diff .bleft.mid.old .bleft.mid.new -side left
- spinbox .bleft.mid.diffcontext -width 5 -font textfont \
+ spinbox .bleft.mid.diffcontext -width 5 \
-from 0 -increment 1 -to 10000000 \
-validate all -validatecommand "diffcontextvalidate %P" \
-textvariable diffcontextstring