summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Stefan-W. Hahn <stefan.hahn@s-hahn.de>2005-11-05 20:55:29 +0100
committerLibravatar Junio C Hamano <junkio@cox.net>2005-11-19 00:24:40 -0800
commite3fe532ddce7311cfbbdc98d2e157d33f6275231 (patch)
treef2941f4801810c082f5851425d4c02101bc3c936
parentgitk: use git-diff-tree --no-commit-id (diff)
downloadtgif-e3fe532ddce7311cfbbdc98d2e157d33f6275231.tar.xz
gitk: moving all three panes if clicking on an arrow.
Signed-off-by: Stefan-W. Hahn <stefan.hahn@s-hahn.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-xgitk4
1 files changed, 3 insertions, 1 deletions
diff --git a/gitk b/gitk
index 29220b1da2..ab2d9b8adf 100755
--- a/gitk
+++ b/gitk
@@ -3158,7 +3158,7 @@ proc clickisonarrow {id y} {
}
proc arrowjump {id dirn y} {
- global mainline sidelines canv
+ global mainline sidelines canv canv2 canv3
set yt {}
if {$dirn eq "down"} {
@@ -3196,6 +3196,8 @@ proc arrowjump {id dirn y} {
set yfrac 0
}
$canv yview moveto $yfrac
+ $canv2 yview moveto $yfrac
+ $canv3 yview moveto $yfrac
}
proc lineclick {x y id isnew} {