From: Paul Mackerras Date: Wed, 29 Aug 2007 12:03:07 +0000 (+1000) Subject: gitk: Fix bug causing incorrect ref list contents when switching view X-Git-Tag: v1.5.4-rc0~318^2~1^2~21 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=df904497ecc15382199045bb257250c857f04eca;p=git.git gitk: Fix bug causing incorrect ref list contents when switching view If the view we're switching to hadn't been read in, we hit an early return in showview which meant we didn't update the ref list window. Signed-off-by: Paul Mackerras --- diff --git a/gitk b/gitk index 060c4c0cb..0125f17fc 100755 --- a/gitk +++ b/gitk @@ -2007,6 +2007,7 @@ proc showview {n} { .bar.view entryconf Edit* -state [expr {$n == 0? "disabled": "normal"}] .bar.view entryconf Delete* -state [expr {$n == 0? "disabled": "normal"}] + run refill_reflist if {![info exists viewdata($n)]} { if {$selid ne {}} { set pending_select $selid @@ -2070,7 +2071,6 @@ proc showview {n} { } elseif {$numcommits == 0} { show_status "No commits selected" } - run refill_reflist } # Stuff relating to the highlighting facility