stand/lua: Always boot on 'enter' keypress in menus

This commit is contained in:
Kyle Evans 2018-02-15 18:16:16 +00:00
parent e4039d68fb
commit b458bf0da1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329329

View File

@ -152,7 +152,7 @@ menu.welcome = {
core.setSingleUser(false);
core.boot();
end,
alias = {"b", "B", "\013"}
alias = {"b", "B"}
},
-- boot single user
@ -272,9 +272,12 @@ function menu.run(m)
while cont do
local key = io.getchar();
-- Exit on backspace
-- Special key behaviors
if (key == 127) and (m ~= menu.welcome) then
break
elseif (key == 13) then
core.boot();
-- Should not return
end
key = string.char(key)