summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6ea1079)
raw | patch | inline | side by side (parent: 6ea1079)
author | Shawn O. Pearce <spearce@spearce.org> | |
Thu, 1 Nov 2007 04:31:36 +0000 (00:31 -0400) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Thu, 1 Nov 2007 04:31:36 +0000 (00:31 -0400) |
Previously we allowed users to tweak their font weight to be bold by
setting it manually in their ~/.gitconfig prior to starting git-gui.
This was broken in ae0754ac9a24afa2693246222fc078fe9c133b3a when
Simon set the font weight to normal by default, overridding whatever
we found from the ~/.gitconfig file.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
setting it manually in their ~/.gitconfig prior to starting git-gui.
This was broken in ae0754ac9a24afa2693246222fc078fe9c133b3a when
Simon set the font weight to normal by default, overridding whatever
we found from the ~/.gitconfig file.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh | patch | blob | history |
diff --git a/git-gui.sh b/git-gui.sh
index a7227ac1b6fddaad0f197b13ee26af9d372ebeca..b41e107d944cdd1b835fc1e00f32d70f10a32ac8 100755 (executable)
--- a/git-gui.sh
+++ b/git-gui.sh
set name [lindex $option 0]
set font [lindex $option 1]
if {[catch {
+ set need_weight 1
foreach {cn cv} $repo_config(gui.$name) {
- font configure $font $cn $cv -weight normal
+ if {$cn eq {-weight}} {
+ set need_weight 0
+ }
+ font configure $font $cn $cv
+ }
+ if {$need_weight} {
+ font configure $font -weight normal
}
} err]} {
error_popup [strcat [mc "Invalid font specified in %s:" "gui.$name"] "\n\n$err"]