summaryrefslogtreecommitdiff
path: root/Master/texmf/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/scripts')
-rw-r--r--Master/texmf/scripts/texlive/tlmgrgui.pl4
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);