more realism in one more helper

This commit is contained in:
Kartik K. Agaram 2024-02-04 17:15:35 -08:00
parent 83722db5e4
commit 95be13f9db
2 changed files with 5 additions and 5 deletions

View File

@ -365,9 +365,9 @@ end
-- not all keys are textinput
-- TODO: handle chords of multiple keys
function App.run_after_keychord(chord)
App.keychord_press(chord)
App.keyreleased(chord)
function App.run_after_keychord(chord, key)
App.keychord_press(chord, key)
App.keyreleased(key)
App.screen.contents = {}
App.draw()
end

View File

@ -416,8 +416,8 @@ and [the Lua manual](https://www.lua.org/manual/5.1/manual.html).
* `App.run_after_textinput(t)` -- mimics keystrokes resulting in `t` and then
draws one frame.
* `App.run_after_keychord(chord)` -- mimics keystrokes resulting in `chord`
and then draws one frame.
* `App.run_after_keychord(chord, key)` -- mimics the final `key` press
resulting in `chord` and then draws one frame.
* `App.run_after_mouse_press(x,y, mouse_button)` -- mimics a mouse press down
followed by drawing a frame.