Skip to content

Commit 740b9b9

Browse files
committed
git-gui: Correct size of dictionary name widget in options dialog
We don't need to fill this entire horizontal cavity, it looks really bad on some platforms to stretch the widget out to fill the window. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
1 parent 765239e commit 740b9b9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/option.tcl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,7 @@ proc do_options {} {
193193
${f}_config_new(gui.spellingdictionary) \
194194
$all_dicts
195195
pack $w.$f.$optid.l -side left -anchor w -fill x
196-
pack $w.$f.$optid.v -side left -anchor w \
197-
-fill x -expand 1 \
198-
-padx 5
196+
pack $w.$f.$optid.v -side right -anchor e -padx 5
199197
pack $w.$f.$optid -side top -anchor w -fill x
200198
}
201199
unset all_dicts

0 commit comments

Comments
 (0)