diff options
author | Norbert Preining <preining@logic.at> | 2009-05-16 22:23:55 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-05-16 22:23:55 +0000 |
commit | add62efa97755286e456d0b80fcde84b6b59e788 (patch) | |
tree | 02fbe197f475ca9d01cb94c967f6b1a9bc8ed427 /Master/tlpkg/installer/install-menu-wizard.pl | |
parent | 304dc81c731e7e61f01dc85d4d2b427861113903 (diff) |
allow installation of TeX Works in text/gui/wizard installer
git-svn-id: svn://tug.org/texlive/trunk@13139 c570f23f-e606-0410-a88d-b1316a301751
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"); |