summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Paul Mackerras <paulus@samba.org>2006-05-20 09:58:49 +1000
committerLibravatar Paul Mackerras <paulus@samba.org>2006-05-20 09:58:49 +1000
commite72ee5ebc8de90ad6de8f9318f75ebd45b2ca001 (patch)
tree3c2c3d86e83f90e650f2405007a0b2baf417d4ab
parentgitk: Fix display of "(...)" for parents/children we haven't drawn (diff)
downloadtgif-e72ee5ebc8de90ad6de8f9318f75ebd45b2ca001.tar.xz
gitk: Fix bug where page-up/down wouldn't always work properly
If the user pressed page up or page down and the new page wasn't already drawn, we failed to select the line we wanted in the new page. This fixes it. Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-xgitk1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitk b/gitk
index d59debf2f5..286f5cd5fd 100755
--- a/gitk
+++ b/gitk
@@ -3429,6 +3429,7 @@ proc selnextpage {dir} {
set lpp 1
}
allcanvs yview scroll [expr {$dir * $lpp}] units
+ drawvisible
if {![info exists selectedline]} return
set l [expr {$selectedline + $dir * $lpp}]
if {$l < 0} {