diff options
Diffstat (limited to 'Master/tlpkg/installer/install-menu-wizard.pl')
-rw-r--r-- | Master/tlpkg/installer/install-menu-wizard.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl index f5e779d64a8..b62bcb0aa91 100644 --- a/Master/tlpkg/installer/install-menu-wizard.pl +++ b/Master/tlpkg/installer/install-menu-wizard.pl @@ -184,6 +184,9 @@ sub ask_path { my $pa = $fmain->Checkbutton(-text => $labels{'optletter'}, -variable => \$vars{"option_letter"}); + my $but_tw = $fmain->Checkbutton(-text => $labels{'addon_editor'}, + -variable => \$vars{"addon_editor"}); + # # disable the "Advanced Configuration" button switching to the # perltk installer @@ -216,6 +219,7 @@ sub ask_path { $pa->place(-x => 0, -y => $ytmp + 30); + $but_tw->place(-x => 0, -y => $ytmp + 60); #$cb->place(-x => $INNERWIDTH, -y => $INNERHEIGHT, -anchor => "se"); |