diff options
-rw-r--r-- | source_text.lua | 2 | ||||
-rw-r--r-- | text.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source_text.lua b/source_text.lua index 8d169a7..76e9045 100644 --- a/source_text.lua +++ b/source_text.lua @@ -198,7 +198,7 @@ function Text.text_input(State, t) if App.mouse_down(1) then return end if App.any_modifier_down() then if App.key_down(t) then - -- The modifiers didn't change the key. Handle it in keychord_pressed. + -- The modifiers didn't change the key. Handle it in keychord_press. return else -- Key mutated by the keyboard layout. Continue below. diff --git a/text.lua b/text.lua index b073fbd..ac07903 100644 --- a/text.lua +++ b/text.lua @@ -124,7 +124,7 @@ function Text.text_input(State, t) if App.mouse_down(1) then return end if App.any_modifier_down() then if App.key_down(t) then - -- The modifiers didn't change the key. Handle it in keychord_pressed. + -- The modifiers didn't change the key. Handle it in keychord_press. return else -- Key mutated by the keyboard layout. Continue below. |