[gitk] [PATCH] Fix selection of tags.

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Pat Thoyts
Date: Saturday, November 14, 2009 - 6:21 am

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>
---
 gitk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gitk b/gitk
index 4e2be7f..364c7a8 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 {}
 }
-- 
1.6.5.1.1367.gcd48

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[gitk] [PATCH] Fix selection of tags., Pat Thoyts, (Sat Nov 14, 6:21 am)
Re: [gitk] [PATCH] Fix selection of tags., Paul Mackerras, (Thu Nov 19, 2:33 am)