aboutsummaryrefslogtreecommitdiff
path: root/gitk
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2007-10-27 21:31:07 +1000
committerPaul Mackerras <paulus@samba.org>2007-10-27 21:31:07 +1000
commit7388bcbc5431552718dde5c3259d861d2fa75a12 (patch)
tree9c51e704ff71898c6ad020b084e89b5f5a8f0c84 /gitk
parent7b3b1515288352149f3ed3b975b650a7f81046ed (diff)
downloadgit-7388bcbc5431552718dde5c3259d861d2fa75a12.tar.gz
git-7388bcbc5431552718dde5c3259d861d2fa75a12.tar.xz
gitk: Use the UI font for the diff/old version/new version radio buttons
This makes the radio buttons for selecting whether to see the full diff, the old version or the new version use the same font as the other user interface elements. 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 4efcbb795..1da0b0af1 100755
--- a/gitk
+++ b/gitk
@@ -830,11 +830,11 @@ proc makewindow {} {
lappend entries $sstring
trace add variable searchstring write incrsearch
pack $sstring -side left -expand 1 -fill x
- radiobutton .bleft.mid.diff -text "Diff" \
+ radiobutton .bleft.mid.diff -text "Diff" -font uifont \
-command changediffdisp -variable diffelide -value {0 0}
- radiobutton .bleft.mid.old -text "Old version" \
+ radiobutton .bleft.mid.old -text "Old version" -font uifont \
-command changediffdisp -variable diffelide -value {0 1}
- radiobutton .bleft.mid.new -text "New version" \
+ radiobutton .bleft.mid.new -text "New version" -font uifont \
-command changediffdisp -variable diffelide -value {1 0}
label .bleft.mid.labeldiffcontext -text " Lines of context: " \
-font uifont