Merge git://git.kernel.org/pub/scm/gitk/gitk
* git://git.kernel.org/pub/scm/gitk/gitk: gitk: Fix bug introduced by "gitk: Fix "wrong # coordinates" error on reload" gitk: Fix bug where current row number display stops working gitk: Move es.po where it belongs gitk: Fix "wrong # coordinates" error on reload
This commit is contained in:
@ -495,7 +495,7 @@ proc reloadcommits {} {
|
|||||||
stop_rev_list $curview
|
stop_rev_list $curview
|
||||||
}
|
}
|
||||||
resetvarcs $curview
|
resetvarcs $curview
|
||||||
catch {unset selectedline}
|
set selectedline {}
|
||||||
catch {unset currentid}
|
catch {unset currentid}
|
||||||
catch {unset thickerline}
|
catch {unset thickerline}
|
||||||
catch {unset treediffs}
|
catch {unset treediffs}
|
||||||
@ -927,7 +927,7 @@ proc removefakerow {id} {
|
|||||||
modify_arc $v $a $i
|
modify_arc $v $a $i
|
||||||
if {[info exist currentid] && $id eq $currentid} {
|
if {[info exist currentid] && $id eq $currentid} {
|
||||||
unset currentid
|
unset currentid
|
||||||
unset selectedline
|
set selectedline {}
|
||||||
}
|
}
|
||||||
if {[info exists targetid] && $targetid eq $id} {
|
if {[info exists targetid] && $targetid eq $id} {
|
||||||
set targetid $p
|
set targetid $p
|
||||||
@ -1838,7 +1838,7 @@ proc makewindow {} {
|
|||||||
pack .tf.bar.rowlabel .tf.bar.rownum .tf.bar.rowlabel2 .tf.bar.numcommits \
|
pack .tf.bar.rowlabel .tf.bar.rownum .tf.bar.rowlabel2 .tf.bar.numcommits \
|
||||||
-side left
|
-side left
|
||||||
global selectedline
|
global selectedline
|
||||||
trace add variable selectedline {write unset} selectedline_change
|
trace add variable selectedline write selectedline_change
|
||||||
|
|
||||||
# Status label and progress bar
|
# Status label and progress bar
|
||||||
set statusw .tf.bar.status
|
set statusw .tf.bar.status
|
||||||
@ -2185,7 +2185,7 @@ proc windows_mousewheel_redirector {W X Y D} {
|
|||||||
proc selectedline_change {n1 n2 op} {
|
proc selectedline_change {n1 n2 op} {
|
||||||
global selectedline rownumsel
|
global selectedline rownumsel
|
||||||
|
|
||||||
if {$op eq "unset"} {
|
if {$selectedline eq {}} {
|
||||||
set rownumsel {}
|
set rownumsel {}
|
||||||
} else {
|
} else {
|
||||||
set rownumsel [expr {$selectedline + 1}]
|
set rownumsel [expr {$selectedline + 1}]
|
||||||
@ -3274,7 +3274,7 @@ proc showview {n} {
|
|||||||
set ytop [expr {[lindex $span 0] * $ymax}]
|
set ytop [expr {[lindex $span 0] * $ymax}]
|
||||||
set ybot [expr {[lindex $span 1] * $ymax}]
|
set ybot [expr {[lindex $span 1] * $ymax}]
|
||||||
set yscreen [expr {($ybot - $ytop) / 2}]
|
set yscreen [expr {($ybot - $ytop) / 2}]
|
||||||
if {[info exists selectedline]} {
|
if {$selectedline ne {}} {
|
||||||
set selid $currentid
|
set selid $currentid
|
||||||
set y [yc $selectedline]
|
set y [yc $selectedline]
|
||||||
if {$ytop < $y && $y < $ybot} {
|
if {$ytop < $y && $y < $ybot} {
|
||||||
@ -3388,7 +3388,7 @@ proc bolden {row font} {
|
|||||||
|
|
||||||
lappend boldrows $row
|
lappend boldrows $row
|
||||||
$canv itemconf $linehtag($row) -font $font
|
$canv itemconf $linehtag($row) -font $font
|
||||||
if {[info exists selectedline] && $row == $selectedline} {
|
if {$row == $selectedline} {
|
||||||
$canv delete secsel
|
$canv delete secsel
|
||||||
set t [eval $canv create rect [$canv bbox $linehtag($row)] \
|
set t [eval $canv create rect [$canv bbox $linehtag($row)] \
|
||||||
-outline {{}} -tags secsel \
|
-outline {{}} -tags secsel \
|
||||||
@ -3402,7 +3402,7 @@ proc bolden_name {row font} {
|
|||||||
|
|
||||||
lappend boldnamerows $row
|
lappend boldnamerows $row
|
||||||
$canv2 itemconf $linentag($row) -font $font
|
$canv2 itemconf $linentag($row) -font $font
|
||||||
if {[info exists selectedline] && $row == $selectedline} {
|
if {$row == $selectedline} {
|
||||||
$canv2 delete secsel
|
$canv2 delete secsel
|
||||||
set t [eval $canv2 create rect [$canv2 bbox $linentag($row)] \
|
set t [eval $canv2 create rect [$canv2 bbox $linentag($row)] \
|
||||||
-outline {{}} -tags secsel \
|
-outline {{}} -tags secsel \
|
||||||
@ -3831,7 +3831,7 @@ proc askrelhighlight {row id} {
|
|||||||
global descendent highlight_related iddrawn rhighlights
|
global descendent highlight_related iddrawn rhighlights
|
||||||
global selectedline ancestor
|
global selectedline ancestor
|
||||||
|
|
||||||
if {![info exists selectedline]} return
|
if {$selectedline eq {}} return
|
||||||
set isbold 0
|
set isbold 0
|
||||||
if {$highlight_related eq [mc "Descendant"] ||
|
if {$highlight_related eq [mc "Descendant"] ||
|
||||||
$highlight_related eq [mc "Not descendant"]} {
|
$highlight_related eq [mc "Not descendant"]} {
|
||||||
@ -4005,7 +4005,7 @@ proc visiblerows {} {
|
|||||||
|
|
||||||
proc layoutmore {} {
|
proc layoutmore {} {
|
||||||
global commitidx viewcomplete curview
|
global commitidx viewcomplete curview
|
||||||
global numcommits pending_select selectedline curview
|
global numcommits pending_select curview
|
||||||
global lastscrollset lastscrollrows commitinterest
|
global lastscrollset lastscrollrows commitinterest
|
||||||
|
|
||||||
if {$lastscrollrows < 100 || $viewcomplete($curview) ||
|
if {$lastscrollrows < 100 || $viewcomplete($curview) ||
|
||||||
@ -4916,7 +4916,7 @@ proc drawcmittext {id row col} {
|
|||||||
-text $name -font $nfont -tags text]
|
-text $name -font $nfont -tags text]
|
||||||
set linedtag($row) [$canv3 create text 3 $y -anchor w -fill $fgcolor \
|
set linedtag($row) [$canv3 create text 3 $y -anchor w -fill $fgcolor \
|
||||||
-text $date -font mainfont -tags text]
|
-text $date -font mainfont -tags text]
|
||||||
if {[info exists selectedline] && $selectedline == $row} {
|
if {$selectedline == $row} {
|
||||||
make_secsel $row
|
make_secsel $row
|
||||||
}
|
}
|
||||||
set xr [expr {$xt + [font measure $font $headline]}]
|
set xr [expr {$xt + [font measure $font $headline]}]
|
||||||
@ -5107,7 +5107,7 @@ proc drawvisible {} {
|
|||||||
if {$endrow >= $vrowmod($curview)} {
|
if {$endrow >= $vrowmod($curview)} {
|
||||||
update_arcrows $curview
|
update_arcrows $curview
|
||||||
}
|
}
|
||||||
if {[info exists selectedline] &&
|
if {$selectedline ne {} &&
|
||||||
$row <= $selectedline && $selectedline <= $endrow} {
|
$row <= $selectedline && $selectedline <= $endrow} {
|
||||||
set targetrow $selectedline
|
set targetrow $selectedline
|
||||||
} elseif {[info exists targetid]} {
|
} elseif {[info exists targetid]} {
|
||||||
@ -5125,10 +5125,16 @@ proc drawvisible {} {
|
|||||||
proc clear_display {} {
|
proc clear_display {} {
|
||||||
global iddrawn linesegs need_redisplay nrows_drawn
|
global iddrawn linesegs need_redisplay nrows_drawn
|
||||||
global vhighlights fhighlights nhighlights rhighlights
|
global vhighlights fhighlights nhighlights rhighlights
|
||||||
|
global linehtag linentag linedtag boldrows boldnamerows
|
||||||
|
|
||||||
allcanvs delete all
|
allcanvs delete all
|
||||||
catch {unset iddrawn}
|
catch {unset iddrawn}
|
||||||
catch {unset linesegs}
|
catch {unset linesegs}
|
||||||
|
catch {unset linehtag}
|
||||||
|
catch {unset linentag}
|
||||||
|
catch {unset linedtag}
|
||||||
|
set boldrows {}
|
||||||
|
set boldnamerows {}
|
||||||
catch {unset vhighlights}
|
catch {unset vhighlights}
|
||||||
catch {unset fhighlights}
|
catch {unset fhighlights}
|
||||||
catch {unset nhighlights}
|
catch {unset nhighlights}
|
||||||
@ -5423,7 +5429,7 @@ proc dofind {{dirn 1} {wrap 1}} {
|
|||||||
}
|
}
|
||||||
focus .
|
focus .
|
||||||
if {$findstring eq {} || $numcommits == 0} return
|
if {$findstring eq {} || $numcommits == 0} return
|
||||||
if {![info exists selectedline]} {
|
if {$selectedline eq {}} {
|
||||||
set findstartline [lindex [visiblerows] [expr {$dirn < 0}]]
|
set findstartline [lindex [visiblerows] [expr {$dirn < 0}]]
|
||||||
} else {
|
} else {
|
||||||
set findstartline $selectedline
|
set findstartline $selectedline
|
||||||
@ -5619,7 +5625,7 @@ proc markmatches {canv l str tag matches font row} {
|
|||||||
[expr {$x0+$xlen+2}] $y1 \
|
[expr {$x0+$xlen+2}] $y1 \
|
||||||
-outline {} -tags [list match$l matches] -fill yellow]
|
-outline {} -tags [list match$l matches] -fill yellow]
|
||||||
$canv lower $t
|
$canv lower $t
|
||||||
if {[info exists selectedline] && $row == $selectedline} {
|
if {$row == $selectedline} {
|
||||||
$canv raise $t secsel
|
$canv raise $t secsel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5778,7 +5784,7 @@ proc appendrefs {pos ids var} {
|
|||||||
proc dispneartags {delay} {
|
proc dispneartags {delay} {
|
||||||
global selectedline currentid showneartags tagphase
|
global selectedline currentid showneartags tagphase
|
||||||
|
|
||||||
if {![info exists selectedline] || !$showneartags} return
|
if {$selectedline eq {} || !$showneartags} return
|
||||||
after cancel dispnexttag
|
after cancel dispnexttag
|
||||||
if {$delay} {
|
if {$delay} {
|
||||||
after 200 dispnexttag
|
after 200 dispnexttag
|
||||||
@ -5792,7 +5798,7 @@ proc dispneartags {delay} {
|
|||||||
proc dispnexttag {} {
|
proc dispnexttag {} {
|
||||||
global selectedline currentid showneartags tagphase ctext
|
global selectedline currentid showneartags tagphase ctext
|
||||||
|
|
||||||
if {![info exists selectedline] || !$showneartags} return
|
if {$selectedline eq {} || !$showneartags} return
|
||||||
switch -- $tagphase {
|
switch -- $tagphase {
|
||||||
0 {
|
0 {
|
||||||
set dtags [desctags $currentid]
|
set dtags [desctags $currentid]
|
||||||
@ -6014,7 +6020,7 @@ proc sellastline {} {
|
|||||||
proc selnextline {dir} {
|
proc selnextline {dir} {
|
||||||
global selectedline
|
global selectedline
|
||||||
focus .
|
focus .
|
||||||
if {![info exists selectedline]} return
|
if {$selectedline eq {}} return
|
||||||
set l [expr {$selectedline + $dir}]
|
set l [expr {$selectedline + $dir}]
|
||||||
unmarkmatches
|
unmarkmatches
|
||||||
selectline $l 1
|
selectline $l 1
|
||||||
@ -6029,7 +6035,7 @@ proc selnextpage {dir} {
|
|||||||
}
|
}
|
||||||
allcanvs yview scroll [expr {$dir * $lpp}] units
|
allcanvs yview scroll [expr {$dir * $lpp}] units
|
||||||
drawvisible
|
drawvisible
|
||||||
if {![info exists selectedline]} return
|
if {$selectedline eq {}} return
|
||||||
set l [expr {$selectedline + $dir * $lpp}]
|
set l [expr {$selectedline + $dir * $lpp}]
|
||||||
if {$l < 0} {
|
if {$l < 0} {
|
||||||
set l 0
|
set l 0
|
||||||
@ -6043,7 +6049,7 @@ proc selnextpage {dir} {
|
|||||||
proc unselectline {} {
|
proc unselectline {} {
|
||||||
global selectedline currentid
|
global selectedline currentid
|
||||||
|
|
||||||
catch {unset selectedline}
|
set selectedline {}
|
||||||
catch {unset currentid}
|
catch {unset currentid}
|
||||||
allcanvs delete secsel
|
allcanvs delete secsel
|
||||||
rhighlight_none
|
rhighlight_none
|
||||||
@ -6052,7 +6058,7 @@ proc unselectline {} {
|
|||||||
proc reselectline {} {
|
proc reselectline {} {
|
||||||
global selectedline
|
global selectedline
|
||||||
|
|
||||||
if {[info exists selectedline]} {
|
if {$selectedline ne {}} {
|
||||||
selectline $selectedline 0
|
selectline $selectedline 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -6864,7 +6870,7 @@ proc redisplay {} {
|
|||||||
setcanvscroll
|
setcanvscroll
|
||||||
allcanvs yview moveto [lindex $span 0]
|
allcanvs yview moveto [lindex $span 0]
|
||||||
drawvisible
|
drawvisible
|
||||||
if {[info exists selectedline]} {
|
if {$selectedline ne {}} {
|
||||||
selectline $selectedline 0
|
selectline $selectedline 0
|
||||||
allcanvs yview moveto [lindex $span 0]
|
allcanvs yview moveto [lindex $span 0]
|
||||||
}
|
}
|
||||||
@ -7185,8 +7191,7 @@ proc rowmenu {x y id} {
|
|||||||
|
|
||||||
stopfinding
|
stopfinding
|
||||||
set rowmenuid $id
|
set rowmenuid $id
|
||||||
if {![info exists selectedline]
|
if {$selectedline eq {} || [rowofcommit $id] eq $selectedline} {
|
||||||
|| [rowofcommit $id] eq $selectedline} {
|
|
||||||
set state disabled
|
set state disabled
|
||||||
} else {
|
} else {
|
||||||
set state normal
|
set state normal
|
||||||
@ -7210,7 +7215,7 @@ proc rowmenu {x y id} {
|
|||||||
proc diffvssel {dirn} {
|
proc diffvssel {dirn} {
|
||||||
global rowmenuid selectedline
|
global rowmenuid selectedline
|
||||||
|
|
||||||
if {![info exists selectedline]} return
|
if {$selectedline eq {}} return
|
||||||
if {$dirn} {
|
if {$dirn} {
|
||||||
set oldid [commitonrow $selectedline]
|
set oldid [commitonrow $selectedline]
|
||||||
set newid $rowmenuid
|
set newid $rowmenuid
|
||||||
@ -9886,6 +9891,7 @@ set viewperm(0) 0
|
|||||||
set viewargs(0) {}
|
set viewargs(0) {}
|
||||||
set viewargscmd(0) {}
|
set viewargscmd(0) {}
|
||||||
|
|
||||||
|
set selectedline {}
|
||||||
set numcommits 0
|
set numcommits 0
|
||||||
set loginstance 0
|
set loginstance 0
|
||||||
set cmdlineok 0
|
set cmdlineok 0
|
||||||
|
Reference in New Issue
Block a user