Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gitk-git/gitk
Original file line number Diff line number Diff line change
Expand Up @@ -6841,7 +6841,7 @@ proc drawtags {id x xt y1} {
set xl [expr {$xl - $delta/2}]
$canv create polygon $x $yt $xr $yt $xr $yb $x $yb \
-width 1 -outline black -fill $col -tags tag.$id
if {[regexp {^(remotes/.*/|remotes/)} $tag match remoteprefix]} {
if {[regexp {^(remotes/[^/]*/|remotes/)} $tag match remoteprefix]} {
set rwid [font measure mainfont $remoteprefix]
set xi [expr {$x + 1}]
set yti [expr {$yt + 1}]
Expand Down
2 changes: 1 addition & 1 deletion gitk-git/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ custom_target(
install_dir: get_option('bindir'),
)

if find_program('msgfmt').found()
if find_program('msgfmt', required: false).found()
subdir('po')
endif