From 75ec5c9087d82f07b1e3e604338fbeef9e17cdf9 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 12 Jul 2022 22:13:06 -0700 Subject: [PATCH] . --- app.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.lua b/app.lua index 56b9dba..2655ea0 100644 --- a/app.lua +++ b/app.lua @@ -237,6 +237,7 @@ function App.mouse_y() end -- all textinput events are also keypresses +-- TODO: handle chords of multiple keys function App.run_after_textinput(t) App.keypressed(t) App.textinput(t) @@ -246,6 +247,7 @@ function App.run_after_textinput(t) end -- not all keys are textinput +-- TODO: handle chords of multiple keys function App.run_after_keychord(chord) App.keychord_pressed(chord) App.keyreleased(chord)