diff options
author | Norbert Preining <preining@logic.at> | 2012-05-09 02:31:37 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2012-05-09 02:31:37 +0000 |
commit | b0cb800a74d6e454f13f54922beeb6ae045d19be (patch) | |
tree | 8ea9203c9e5115e67298e8f61c2d1d6ca65605f9 /Master/texmf | |
parent | 37c46addfbbc2675baf7acd2dc980ee47113694f (diff) |
improve layout
git-svn-id: svn://tug.org/texlive/trunk@26269 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 44b1d06cfb2..08467db383c 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -2490,7 +2490,7 @@ sub cb_edit_string_or_dir { $sw->withdraw; $sw->Label(-text => __("New value for") . " $what:")->pack(@p_ii); my $entry = $sw->Entry(-text => $cur, -width => 30); - $entry->pack(); + $entry->pack(@p_ii); $sw->Button(-text => __("Choose Directory"), -command => sub { my $var = $sw->chooseDirectory(); @@ -2498,7 +2498,7 @@ sub cb_edit_string_or_dir { $entry->delete(0,"end"); $entry->insert(0,$var); } - })->pack; + })->pack(@p_ii); my $f = $sw->Frame; my $okbutton = $f->Button(-text => __("Ok"), -command => sub { $val = $entry->get; $done = 1; })->pack(@left, @p_ii); |