summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Shawn O. Pearce <spearce@spearce.org>2007-07-04 14:06:28 -0400
committerLibravatar Shawn O. Pearce <spearce@spearce.org>2007-07-04 23:16:20 -0400
commit1eb96a25c9e76b70ca3f335bce7e60d66220eaa9 (patch)
treed5564efa9f95d26e4a21f8f13e50fce338930974
parentgit-gui: Start blame windows as tall as possible (diff)
downloadtgif-1eb96a25c9e76b70ca3f335bce7e60d66220eaa9.tar.xz
git-gui: Correct resizing of remote branch delete dialog
The status field of the remote branch delete dialog was marked to expand, which meant that if the user grew the window vertically most of the new vertical height was given to the status field and not to the branch list. Since the status field is just a single line of text there is no reason for it to gain additional height, instead we should make sure all additional height goes to the branch list. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r--lib/remote_branch_delete.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/remote_branch_delete.tcl b/lib/remote_branch_delete.tcl
index b83e1b6315..d7e2b8db45 100644
--- a/lib/remote_branch_delete.tcl
+++ b/lib/remote_branch_delete.tcl
@@ -98,10 +98,10 @@ constructor dialog {} {
button $w.heads.footer.rescan \
-text {Rescan} \
-command [cb _rescan]
- pack $w.heads.footer.status -side left -fill x -expand 1
+ pack $w.heads.footer.status -side left -fill x
pack $w.heads.footer.rescan -side right
- pack $w.heads.footer -side bottom -fill x -expand 1
+ pack $w.heads.footer -side bottom -fill x
pack $w.heads.sby -side right -fill y
pack $w.heads.l -side left -fill both -expand 1
pack $w.heads -fill both -expand 1 -pady 5 -padx 5