Turns out ctrl+ makes it into lua.textinput. Thanks John Blommers for
the report. This should fix https://github.com/akkartik/lines.love/issues/6.
This commit is contained in:
Kartik K. Agaram 2022-06-27 17:32:52 -07:00
parent 83ba9e61d1
commit e63878897e
1 changed files with 1 additions and 2 deletions

View File

@ -139,8 +139,7 @@ end
function Text.textinput(t)
if App.mouse_down(1) then return end
assert(not App.ctrl_down())
if App.alt_down() or App.cmd_down() then return end
if App.ctrl_down() or App.alt_down() or App.cmd_down() then return end
local before = snapshot(Cursor1.line)
--? print(Screen_top1.line, Screen_top1.pos, Cursor1.line, Cursor1.pos, Screen_bottom1.line, Screen_bottom1.pos)
Text.insert_at_cursor(t)