kernel-config: The hot key for choices is just the first character

Stupid inconsistency...
This commit is contained in:
Xi Ruoyao 2023-12-06 17:26:10 +08:00
parent 31a9142d10
commit 7cce808a46
No known key found for this signature in database
GPG Key ID: ACAAD20E19E710E3
2 changed files with 5 additions and 2 deletions

View File

@ -5,4 +5,4 @@
DO NOT EDIT! -->
<screen role="nodump"><emphasis role='blue'>P</emphasis>rocessor type and features ---&gt;
H<emphasis role='blue'>i</emphasis>gh Memory Support ---&gt;
(X) 64<emphasis role='blue'>G</emphasis>B [HIGHMEM64G]</screen>
(X) <emphasis role='blue'>6</emphasis>4GB [HIGHMEM64G]</screen>

View File

@ -251,6 +251,7 @@ sep = known_config.get('separate_toplevel_menu')
for i0, val, i1, title, arrow, key, menu, comment in r:
rem = max_line
is_choice = (val == '(X)')
if val:
val += (max_val_len[menu] - len(val)) * ' '
@ -263,7 +264,9 @@ for i0, val, i1, title, arrow, key, menu, comment in r:
if len(title) > rem:
title = title[:rem - 3] + '...'
b = title.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
b = title
if not is_choice:
b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
a = title[:len(title) - len(b)]
b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
line += escape(a) + b0 + escape(b[1:]) + escape(arrow)