From: Shawn O. Pearce Date: Mon, 9 Jul 2007 01:29:54 +0000 (-0400) Subject: git-gui: Default selection to first matching ref X-Git-Tag: v1.5.3-rc1~16^2~17 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=84d3d7b84c600d90486205bf801580009dc523a8;p=git.git git-gui: Default selection to first matching ref If we have specifications listed in our revision picker mega-widget then we should default the selection within that widget to the first ref available. This way the user does not need to use the spacebar to activate the selection of a ref within the box; instead they can navigate up/down with the arrow keys and be done with it. Signed-off-by: Shawn O. Pearce --- diff --git a/lib/choose_rev.tcl b/lib/choose_rev.tcl index 7f2b4e603..1aab56f5c 100644 --- a/lib/choose_rev.tcl +++ b/lib/choose_rev.tcl @@ -133,6 +133,7 @@ constructor new {path {title {}}} { set i 0 foreach spec $spec_head { if {[lindex $spec 0] eq $current_branch} { + $w_list selection clear 0 end $w_list selection set $i break } @@ -312,6 +313,10 @@ method _rebuild {pat} { $w_list insert end $txt } } + if {$cur_specs ne {}} { + $w_list selection clear 0 end + $w_list selection set 0 + } if {[$w_filter cget -state] ne $ste} { $w_list configure -state $ste