fix a comment

This commit is contained in:
Kartik K. Agaram 2024-07-17 14:32:27 -07:00
parent 1d3751fb82
commit fab72a2902
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.