diff options
author | Pat Thoyts <patthoyts@users.sourceforge.net> | 2009-11-14 13:21:09 +0000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2009-11-19 20:32:45 +1100 |
commit | a80e82f6ee79a0b1ad42781af79bc76628ec90e9 (patch) | |
tree | 1f401366fda8bd73a7db63c02563e9b0713cfe8f /gitk | |
parent | gitk: Default to the system colours on Windows (diff) | |
download | tgif-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>
Diffstat (limited to 'gitk')
-rwxr-xr-x | gitk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 {} } |