Code

gitk: Fix selection of tags
authorPat Thoyts <patthoyts@users.sourceforge.net>
Sat, 14 Nov 2009 13:21:09 +0000 (13:21 +0000)
committerPaul Mackerras <paulus@samba.org>
Thu, 19 Nov 2009 09:32:45 +0000 (20:32 +1100)
When a tag is clicked an error is raised due to a missing parameter in
a function call.

Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
gitk

diff --git a/gitk b/gitk
index 4e2be7ff4bc28b177f0eb9790dfac7a591cf135b..364c7a84cbcf923deb72c2a91b4ec5f5d75bf4c3 100755 (executable)
--- a/gitk
+++ b/gitk
@@ -10489,7 +10489,7 @@ proc showtag {tag isnew} {
        set text "[mc "Tag"]: $tag\n[mc "Id"]:  $tagids($tag)"
     }
     appendwithlinks $text {}
-    maybe_scroll_ctext
+    maybe_scroll_ctext 1
     $ctext conf -state disabled
     init_flist {}
 }