diff options
author | Norbert Preining <preining@logic.at> | 2008-08-03 10:56:34 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-08-03 10:56:34 +0000 |
commit | 75d369cdb13d99b7c114b0959d90583ea728315b (patch) | |
tree | f255202b84544adf370a27cb99d1dd18a608174a /Master/tlpkg/installer | |
parent | 5438be07b5bce13ff49910d0112eaea2329f420e (diff) |
nstall-tl gui: hopefully fix the crashes/window size problems on all systems
Thanks Taco and Siep
git-svn-id: svn://tug.org/texlive/trunk@10030 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer')
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 4 |
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); |