aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--input.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/input.lua b/input.lua
index 87d980e..ccace0d 100644
--- a/input.lua
+++ b/input.lua
@@ -64,6 +64,9 @@ return function(w)
elseif keyboard.key == 'end' then
w.info.cursor = w.info.text:len()
-- info
+ elseif keyboard.key == 'return' then
+ keyboard.clearFocus()
+ keyboard.pressed()
elseif keyboard.code >= 32 and keyboard.code < 127 then
local left = w.info.text:sub(1,w.info.cursor)
local right = w.info.text:sub(w.info.cursor+1)