summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index bb91120e489..3bed35adc75 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -397,9 +397,9 @@ sub run_menu {
$rh = $maxheight;
$rw += 20; # for the scrollbar
}
- $mainwindow->configure(-height => $rh, -width=>$rw);
$subframe->configure(-height => $rh, -width=>$rw);
- $subframe->pack;
+ $subframe->pack(-expand => 1, -fill => "both");
+ $mainwindow->configure(-height => $rh, -width=>$rw);
#$mw->pack(-expand => 1, -fill => "both");
Tk::MainLoop();
return($return);