diff options
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/tlshell/tlshell.tcl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/tlshell/tlshell.tcl b/Master/texmf-dist/scripts/tlshell/tlshell.tcl index 02bd6a2bd40..5d34e2197cc 100755 --- a/Master/texmf-dist/scripts/tlshell/tlshell.tcl +++ b/Master/texmf-dist/scripts/tlshell/tlshell.tcl @@ -1,6 +1,6 @@ #!/usr/bin/env wish -# Copyright 2017-2023 Siep Kroonenberg +# Copyright 2017-2024 Siep Kroonenberg # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -2215,6 +2215,9 @@ proc do_package_popup_menu {x y X Y} { remove_pkgs "focus" } } + .pkg_popup add command -label [__ "Reporting bugs"] -command { + run_cmd "bug [.pkglist focus]" 1; vwait ::done_waiting + } .pkg_popup post [expr {$X - 2}] [expr {$Y - 2}] focus .pkg_popup } ; # do_package_popup_menu |