diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-02-14 06:07:39 (GMT) |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-02-14 06:07:39 (GMT) |
commit | 740b9b9ff4db2c32eb655213b44e3e5249128426 (patch) | |
tree | c77bd782aa865decf0d2d2c6d02b678e0b561705 | |
parent | 765239e9d26561454f125cb3033ff55db5d78ce4 (diff) | |
download | git-740b9b9ff4db2c32eb655213b44e3e5249128426.zip git-740b9b9ff4db2c32eb655213b44e3e5249128426.tar.gz git-740b9b9ff4db2c32eb655213b44e3e5249128426.tar.bz2 |
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>
-rw-r--r-- | lib/option.tcl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/option.tcl b/lib/option.tcl index 3bfa2ed..ea80df0 100644 --- a/lib/option.tcl +++ b/lib/option.tcl @@ -193,9 +193,7 @@ proc do_options {} { ${f}_config_new(gui.spellingdictionary) \ $all_dicts pack $w.$f.$optid.l -side left -anchor w -fill x - pack $w.$f.$optid.v -side left -anchor w \ - -fill x -expand 1 \ - -padx 5 + pack $w.$f.$optid.v -side right -anchor e -padx 5 pack $w.$f.$optid -side top -anchor w -fill x } unset all_dicts |