diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-28 23:01:00 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-28 23:01:00 +0000 |
commit | ea595089250526678b91ba53685f0448a7cb7387 (patch) | |
tree | a310fcd3ea032140234b5c4f95bce7737a9f51dc /Master | |
parent | c5340559884cb32df1f0740c4ec960a84d65d1eb (diff) |
(obutton,toggle): use X instead of x in the
options text menu, for consistency. Is this
problematic for some reason? We'll see.
git-svn-id: svn://tug.org/texlive/trunk@44108 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/installer/install-menu-text.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/install-menu-text.pl b/Master/tlpkg/installer/install-menu-text.pl index caa8ec50e21..6fe12d42cd5 100644 --- a/Master/tlpkg/installer/install-menu-text.pl +++ b/Master/tlpkg/installer/install-menu-text.pl @@ -65,7 +65,7 @@ sub button { # for main menu: 1 char sub obutton { # for options menu: more chars allowed my $val=shift; my $vals=shift; # array ref to descriptions of possible values - $vals = [' ', 'x'] unless defined $vals; + $vals = [' ', 'X'] unless defined $vals; return "[$$vals[$val]]"; } @@ -76,7 +76,7 @@ sub hbar { sub toggle { my $var=shift; my $vals=shift; # array ref to descriptions of possible values - $vals = [' ', 'x'] unless defined $vals; + $vals = [' ', 'X'] unless defined $vals; my $n_vals = @$vals; $vars{$var} += 1; $vars{$var} = 0 unless $vars{$var} < $n_vals; |