Merge pull request #606 from TheWireLord/numpadenter-support

Added Numpad Enter Support - bios.lua
This commit is contained in:
Jonathan Coates 2020-12-12 21:51:07 +00:00 committed by GitHub
commit 4ae370b9db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -338,8 +338,8 @@ function read(_sReplaceChar, _tHistory, _fnComplete, _sDefault)
redraw()
elseif sEvent == "key" then
if param == keys.enter then
-- Enter
if param == keys.enter or param == keys.numPadEnter then
-- Enter/Numpad Enter
if nCompletion then
clear()
uncomplete()