diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-07-12 22:13:06 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-07-12 22:13:06 -0700 |
commit | 75ec5c9087d82f07b1e3e604338fbeef9e17cdf9 (patch) | |
tree | 75bdc85b81ae746dc27d8a00cc3d93e6115c2095 | |
parent | 9e9e8ed35cfbbcbc4ad43903079d574c6358e932 (diff) | |
download | view.love-75ec5c9087d82f07b1e3e604338fbeef9e17cdf9.tar.gz |
.
-rw-r--r-- | app.lua | 2 |
1 files changed, 2 insertions, 0 deletions
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) |