Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-gui: don't hide the Browse button when resizing the repo chooser
author
Markus Heidelberg
<markus.heidelberg@web.de>
Fri, 13 Mar 2009 23:42:37 +0000
(
00:42
+0100)
committer
Shawn O. Pearce
<spearce@spearce.org>
Tue, 17 Mar 2009 02:57:48 +0000
(19:57 -0700)
Rather shrink the input field for "Create New Repository" and "Open
Existing Repository" as it's already done for "Clone Existing
Repository".
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
lib/choose_repository.tcl
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
764369c
)
diff --git
a/lib/choose_repository.tcl
b/lib/choose_repository.tcl
index f9ff62a3b22fcc481c88dc35268d06d2fc4a5795..09277e9fa13858d50e6f93b6c8262999fb5cedb1 100644
(file)
--- 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 $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
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 $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
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