From: Paul Mackerras Date: Sun, 14 May 2006 23:56:08 +0000 (+1000) Subject: gitk: Fix display of "(...)" for parents/children we haven't drawn X-Git-Tag: v1.4.0-rc1~21^2~5 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=b09344891010330dcdd26b90453e7e31c780612e;p=git.git gitk: Fix display of "(...)" for parents/children we haven't drawn In the commit details window, we were displaying "(...)" for the headlines of parents and children that haven't been drawn, without making any attempt to get those headlines. This adds a call to getcommit to commit_descriptor so we get those headlines. Signed-off-by: Paul Mackerras --- diff --git a/gitk b/gitk index 4aa57c01..d59debf2 100755 --- a/gitk +++ b/gitk @@ -3213,8 +3213,11 @@ proc selcanvline {w x y} { proc commit_descriptor {p} { global commitinfo + if {![info exists commitinfo($p)]} { + getcommit $p + } set l "..." - if {[info exists commitinfo($p)]} { + if {[llength $commitinfo($p)] > 1} { set l [lindex $commitinfo($p) 0] } return "$p ($l)"