From: Paul Mackerras Date: Fri, 19 May 2006 23:58:49 +0000 (+1000) Subject: gitk: Fix bug where page-up/down wouldn't always work properly X-Git-Url: http://privyetmir.co.uk/gitweb?a=commitdiff_plain;h=e72ee5ebc8de90ad6de8f9318f75ebd45b2ca001;p=gitk 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 --- diff --git a/gitk b/gitk index d59debf..286f5cd 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} {