diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2009-03-16 20:01:27 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2009-03-16 20:01:27 -0700 |
commit | 73fea1736495fb07b7ad000ddc585bcff8f0b72b (patch) | |
tree | 88fb8ab169f605c73ad27abe744286644e4c62dd | |
parent | 880fa117f197a2c1f41fb16b09cd1e8d6050d6fc (diff) | |
parent | 379f84b8d19b5412aff5b9d6bd7bb1ada37b9353 (diff) | |
download | git-73fea1736495fb07b7ad000ddc585bcff8f0b72b.tar.gz git-73fea1736495fb07b7ad000ddc585bcff8f0b72b.tar.xz |
Merge branch 'maint'
* maint:
git-gui: don't hide the Browse button when resizing the repo chooser
-rw-r--r-- | lib/choose_repository.tcl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/choose_repository.tcl b/lib/choose_repository.tcl index f9ff62a3b..09277e9fa 100644 --- a/lib/choose_repository.tcl +++ b/lib/choose_repository.tcl @@ -398,6 +398,8 @@ method _do_new {} { grid $w_body.where.l $w_body.where.t $w_body.where.b -sticky ew pack $w_body.where -fill x + grid columnconfigure $w_body.where 1 -weight 1 + trace add variable @local_path write [cb _write_local_path] bind $w_body.h <Destroy> [list trace remove variable @local_path write [cb _write_local_path]] update @@ -998,6 +1000,8 @@ method _do_open {} { grid $w_body.where.l $w_body.where.t $w_body.where.b -sticky ew pack $w_body.where -fill x + grid columnconfigure $w_body.where 1 -weight 1 + trace add variable @local_path write [cb _write_local_path] bind $w_body.h <Destroy> [list trace remove variable @local_path write [cb _write_local_path]] update |