Skip to content

Commit 32af629

Browse files
committed
Merge branch 'maint'
* maint: (38 commits) git-gui: Changed blame header bar background to match main window git-gui: Favor the original annotations over the recent ones git-gui: Improve our labeling of blame annotation types git-gui: Use three colors for the blame viewer background git-gui: Jump to original line in blame viewer git-gui: Display both commits in our tooltips git-gui: Run blame twice on the same file and display both outputs git-gui: Display the "Loading annotation..." message in italic git-gui: Rename fields in blame viewer to better descriptions git-gui: Label the uncommitted blame history entry git-gui: Switch internal blame structure to Tcl lists git-gui: Cleanup redundant column management in blame viewer git-gui: Better document our blame variables git-gui: Remove unused commit_list from blame viewer git-gui: Automatically expand the line number column as needed git-gui: Make the line number column slightly wider in blame git-gui: Use lighter colors in blame view git-gui: Remove unnecessary space between columns in blame viewer git-gui: Remove the loaded column from the blame viewer git-gui: Clip the commit summaries in the blame history menu ...
2 parents 19ed9a7 + d80ded0 commit 32af629

File tree

3 files changed

+786
-196
lines changed

3 files changed

+786
-196
lines changed

git-gui.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,6 +1047,7 @@ proc incr_font_size {font {amt 1}} {
10471047
incr sz $amt
10481048
font configure $font -size $sz
10491049
font configure ${font}bold -size $sz
1050+
font configure ${font}italic -size $sz
10501051
}
10511052

10521053
######################################################################
@@ -1239,8 +1240,10 @@ catch {
12391240
destroy .dummy
12401241
}
12411242

1243+
font create font_uiitalic
12421244
font create font_uibold
12431245
font create font_diffbold
1246+
font create font_diffitalic
12441247

12451248
foreach class {Button Checkbutton Entry Label
12461249
Labelframe Listbox Menu Message
@@ -1276,8 +1279,10 @@ proc apply_config {} {
12761279
}
12771280
foreach {cn cv} [font configure $font] {
12781281
font configure ${font}bold $cn $cv
1282+
font configure ${font}italic $cn $cv
12791283
}
12801284
font configure ${font}bold -weight bold
1285+
font configure ${font}italic -slant italic
12811286
}
12821287
}
12831288

0 commit comments

Comments
 (0)