1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-08 09:23:00 +00:00

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 Jummit
parent 386e01364e
commit 5922d7548c
2 changed files with 37 additions and 3 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()