about summary refs log tree commit diff stats
path: root/app.lua
diff options
context:
space:
mode:
Diffstat (limited to 'app.lua')
-rw-r--r--app.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/app.lua b/app.lua
index f59897c..627a438 100644
--- a/app.lua
+++ b/app.lua
@@ -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