diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2019-03-13 17:07:31 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2019-03-13 17:07:31 +0000 |
commit | 2eaeb7ec040dca02fc3eb3aa4db9c573447a058d (patch) | |
tree | 85d9ee439144256ed6294acf033e979e7944e97d /Master | |
parent | 53548f11ec33a789d6e2d42f0ae490f7596d20a2 (diff) |
Minor fixes
git-svn-id: svn://tug.org/texlive/trunk@50370 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/scripts/texlive/uninstq.vbs | 4 | ||||
-rwxr-xr-x | Master/tlpkg/installer/install-tl-gui.tcl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/texlive/uninstq.vbs b/Master/texmf-dist/scripts/texlive/uninstq.vbs index 7e768ac8223..382f4be3731 100644 --- a/Master/texmf-dist/scripts/texlive/uninstq.vbs +++ b/Master/texmf-dist/scripts/texlive/uninstq.vbs @@ -1,5 +1,7 @@ Dim ans -ans = MsgBox( "Really uninstall TeX Live?", 36, "TeX Live uninstaller" ) +ans = MsgBox( "Really uninstall TeX Live?" & vbcrlf & vbcrlf & _ + "Please make sure that no TeX Live programs are still running!", _ + 36, "TeX Live uninstaller" ) If ans <> vbYes Then wscript.quit( 1 ) Else diff --git a/Master/tlpkg/installer/install-tl-gui.tcl b/Master/tlpkg/installer/install-tl-gui.tcl index 76e9333a783..1e5c3d524c7 100755 --- a/Master/tlpkg/installer/install-tl-gui.tcl +++ b/Master/tlpkg/installer/install-tl-gui.tcl @@ -1735,9 +1735,7 @@ proc main_prog {} { break } elseif [string match "location: ?*" $l] { if [winfo exists .loading] { - wm iconify . .loading configure -text [__ "Loading from %s" [string range $l 10 end]] - wm deiconify . update } } else { |