about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2025-05-06 13:34:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2025-05-06 13:34:59 -0700
commita03e4a9c0289f9cf49030f896ce1883ba8113747 (patch)
tree29f2460f1a04147c4236a4faafdc5d2cb1b564e0
parented48ff4b893d73101c8c4011e73c08bf2630c89d (diff)
downloadtext.love-a03e4a9c0289f9cf49030f896ce1883ba8113747.tar.gz
bugfix
-rw-r--r--source.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/source.lua b/source.lua
index 2c5e18e..1acef7f 100644
--- a/source.lua
+++ b/source.lua
@@ -393,6 +393,6 @@ function source.key_release(key, scancode)
   if Focus == 'edit' then
     return edit.key_release(Editor_state, key, scancode)
   else
-    return log_browser.keychord_press(Log_browser_state, chordkey, scancode)
+    return log_browser.key_release(Log_browser_state, key, scancode)
   end
 end