diff options
author | Norbert Preining <preining@logic.at> | 2008-07-11 16:24:43 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-11 16:24:43 +0000 |
commit | 50eb80db2d9aaa1430c2637c449af010752e5249 (patch) | |
tree | dfab111c68e4b5ed36a1d2278b4f30109d041081 /Master | |
parent | edf43e0852768e1a04cc4883cf708f7ea1391409 (diff) |
tlmgrgui: make the run program window transient and grab the events to
prevent users to click planless around ...
git-svn-id: svn://tug.org/texlive/trunk@9450 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl index 511b6608313..a344266c68c 100755 --- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl @@ -411,6 +411,8 @@ sub init_install_media { sub run_program_show_output { my $td = $mw->Toplevel(-title => ___"tlmgr process"); + $td->transient($mw); + $td->grab(); my $tf = $td->Scrolled("ROText", -width => 80, -height => 10, -wrap => "none", |