mirror of
https://github.com/git/git.git
synced 2024-11-02 07:17:58 +01:00
gitk: Fix typo in user message.
Signed-off-by: Christian Stimming <stimming@tuhh.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
66e15a6b83
commit
55e34436e1
1 changed files with 3 additions and 3 deletions
6
gitk
6
gitk
|
@ -2629,12 +2629,12 @@ proc askrelhighlight {row id} {
|
|||
|
||||
if {![info exists selectedline]} return
|
||||
set isbold 0
|
||||
if {$highlight_related eq [mc "Descendent"] ||
|
||||
$highlight_related eq [mc "Not descendent"]} {
|
||||
if {$highlight_related eq [mc "Descendant"] ||
|
||||
$highlight_related eq [mc "Not descendant"]} {
|
||||
if {![info exists descendent($id)]} {
|
||||
is_descendent $id
|
||||
}
|
||||
if {$descendent($id) == ($highlight_related eq [mc "Descendent"])} {
|
||||
if {$descendent($id) == ($highlight_related eq [mc "Descendant"])} {
|
||||
set isbold 1
|
||||
}
|
||||
} elseif {$highlight_related eq [mc "Ancestor"] ||
|
||||
|
|
Loading…
Reference in a new issue