aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPat Thoyts <patthoyts@users.sourceforge.net>2009-11-14 13:21:09 +0000
committerPaul Mackerras <paulus@samba.org>2009-11-19 20:32:45 +1100
commita80e82f6ee79a0b1ad42781af79bc76628ec90e9 (patch)
tree1f401366fda8bd73a7db63c02563e9b0713cfe8f
parent1924d1bc0dc99cd3460d3551671908cc76c09d3b (diff)
downloadgit-a80e82f6ee79a0b1ad42781af79bc76628ec90e9.tar.gz
git-a80e82f6ee79a0b1ad42781af79bc76628ec90e9.tar.xz
gitk: Fix selection of tags
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>
-rwxr-xr-xgitk2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitk b/gitk
index 4e2be7ff4..364c7a84c 100755
--- 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 {}
}