menubar: Treat KP_Enter as pressing Enter (FS#1072)
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
9631ada0d2
commit
b0a056f50a
|
@ -233,7 +233,7 @@ local function prompt_keypressed_callback(mod, key, comm)
|
|||
elseif key == "End" then
|
||||
current_item = #shownitems
|
||||
return true
|
||||
elseif key == "Return" then
|
||||
elseif key == "Return" or key == "KP_Enter" then
|
||||
if mod.Control then
|
||||
current_item = #shownitems
|
||||
if mod.Mod1 then
|
||||
|
|
Loading…
Reference in New Issue