From f41a8bb91f7fd8a4ee3e83660b36c7db60793fa6 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 30 Nov 2022 19:28:59 -0800 Subject: [PATCH] bugfix: chords with modifiers --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 7af5a33..2e3621d 100644 --- a/main.lua +++ b/main.lua @@ -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)