about summary refs log tree commit diff stats
path: root/text.lua
diff options
context:
space:
mode:
Diffstat (limited to 'text.lua')
-rw-r--r--text.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.lua b/text.lua
index 87c8368..c4b9163 100644
--- a/text.lua
+++ b/text.lua
@@ -1109,7 +1109,7 @@ end
 
 function Text.textinput(t)
   if love.mouse.isDown('1') then return end
-  if App.modifier_down() then return end
+  if App.ctrl_down() or App.alt_down() or App.cmd_down() then return end
   local down = love.keyboard.isDown
   Text.insert_at_cursor(t)
 end