From: Pat Thoyts Date: Thu, 7 Oct 2010 22:00:33 +0000 (+0100) Subject: git-gui: use full dialog width for old name when renaming branch X-Git-Tag: v1.7.4-rc0~155^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4c56d1ddc03e6370a3afc01a011e6c3e65ff65d3;p=git.git git-gui: use full dialog width for old name when renaming branch Let the combobox/option menu expand to fill the width of the dialog. Signed-off-by: Pat Thoyts --- diff --git a/lib/branch_rename.tcl b/lib/branch_rename.tcl index 63988773b..6e510ec2e 100644 --- a/lib/branch_rename.tcl +++ b/lib/branch_rename.tcl @@ -53,7 +53,7 @@ constructor dialog {} { return 1 } - grid $w.rename.oldname_l $w.rename.oldname_m -sticky w -padx {0 5} + grid $w.rename.oldname_l $w.rename.oldname_m -sticky we -padx {0 5} grid $w.rename.newname_l $w.rename.newname_t -sticky we -padx {0 5} grid columnconfigure $w.rename 1 -weight 1 pack $w.rename -anchor nw -fill x -pady 5 -padx 5