summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 61af34242c5..525ee61430c 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -1648,8 +1648,8 @@ sub _do_postaction_shortcut {
my $cmd = (defined($keyval{'cmd'}) ? $keyval{'cmd'} : '');
my $args = (defined($keyval{'args'}) ? $keyval{'args'} : '');
- # hide can be only 0 or 1, and defaults to 0
- my $hide = (defined($keyval{'hide'}) ? $keyval{'hide'} : 0);
+ # hide can be only 0 or 1, and defaults to 1
+ my $hide = (defined($keyval{'hide'}) ? $keyval{'hide'} : 1);
if (($hide ne "0") && ($hide ne "1")) {
tlwarn("hide of shortcut postaction $hide is unknown (0, 1)\n");
return 0;