diff options
author | Paul Mackerras <paulus@samba.org> | 2006-05-20 09:58:49 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-05-20 09:58:49 +1000 |
commit | e72ee5ebc8de90ad6de8f9318f75ebd45b2ca001 (patch) | |
tree | 3c2c3d86e83f90e650f2405007a0b2baf417d4ab /gitk | |
parent | b09344891010330dcdd26b90453e7e31c780612e (diff) | |
download | git-e72ee5ebc8de90ad6de8f9318f75ebd45b2ca001.tar.gz git-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>
Diffstat (limited to 'gitk')
-rwxr-xr-x | gitk | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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} { |