bugfix: chords with modifiers

This commit is contained in:
Kartik K. Agaram 2022-11-30 19:28:59 -08:00
parent e9a5027d7c
commit f41a8bb91f
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ function App.keychord_pressed(chord, key)
return
end
Cursor_time = 0 -- ensure cursor is visible immediately after it moves
if on.keychord_pressed then on.keychord_pressed(key, scancode, isrepeat) end
if on.keychord_pressed then on.keychord_pressed(chord, key) end
end
function App.textinput(t)