From ff2073ed4db4bcd288fa017efc13263df17eb9fc Mon Sep 17 00:00:00 2001 From: NOT_A_ROBOT <76723917+Not-A-Normal-Robot@users.noreply.github.com> Date: Thu, 18 Nov 2021 18:04:51 +0700 Subject: [PATCH] fix numpadenter on console (#469) made numpadenter do the same thing as enter on console --- parts/scenes/app_console.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parts/scenes/app_console.lua b/parts/scenes/app_console.lua index 36a4c1d5..7a351c15 100644 --- a/parts/scenes/app_console.lua +++ b/parts/scenes/app_console.lua @@ -979,7 +979,7 @@ function scene.wheelMoved(_,y) end function scene.keyDown(key) - if key=="return"then + if key=="return" or key=="kpenter"then local input=STRING.trim(inputBox:getText()) if input==""then return end