summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Shawn O. Pearce <spearce@spearce.org>2006-11-11 21:02:37 -0500
committerLibravatar Shawn O. Pearce <spearce@spearce.org>2006-11-12 00:16:04 -0500
commitf019c96add051aa9265c3dba8940c29f307aae81 (patch)
tree17f0d4b16b226d9db6972f30ba14eb59ee00bf65
parentgit-gui: Corrected font used for options menu items. (diff)
downloadtgif-f019c96add051aa9265c3dba8940c29f307aae81.tar.xz
git-gui: Honor system font and let user configure fonts.
Rather than hardcoding our fonts to something that I thought was reasonable, guess font_ui off the font used by the system in the menu bar. This way the application conforms by default to whatever the user's desktop is setup to. We also now let the user supply font configuration through their repository configuration as gui.fontui (the overall UI font) and gui.fontdiff (the font used for the diff viewer). Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-xgit-gui14
1 files changed, 10 insertions, 4 deletions
diff --git a/git-gui b/git-gui
index 008eeb4460..26df169c18 100755
--- a/git-gui
+++ b/git-gui
@@ -1566,9 +1566,16 @@ proc unclick {w x y} {
##
## ui init
-set font_ui {Helvetica 10}
-set font_diff {Courier 10}
-set cursor_ptr left_ptr
+set font_ui {}
+set font_diff {}
+set cursor_ptr {}
+menu .mbar -tearoff 0
+catch {set font_ui [lindex $repo_config(gui.fontui) 0]}
+catch {set font_diff [lindex $repo_config(gui.fontdiff) 0]}
+if {$font_ui == {}} {catch {set font_ui [.mbar cget -font]}}
+if {$font_ui == {}} {set font_ui {Helvetica 10}}
+if {$font_diff == {}} {set font_diff {Courier 10}}
+if {$cursor_ptr == {}} {set cursor_ptr left_ptr}
switch -glob -- "$tcl_platform(platform),$tcl_platform(os)" {
windows,* {set M1B Control; set M1T Ctrl}
@@ -1577,7 +1584,6 @@ unix,Darwin {set M1B M1; set M1T Cmd}
}
# -- Menu Bar
-menu .mbar -tearoff 0
.mbar add cascade -label Project -menu .mbar.project
.mbar add cascade -label Edit -menu .mbar.edit
.mbar add cascade -label Commit -menu .mbar.commit