Merge lines.love

This commit is contained in:
Kartik K. Agaram 2023-05-14 17:12:23 -07:00
commit 0d96fbe860
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ function Text.clip_wikiword_with_screen_line(line, line_cache, i, s, e)
hoff = e
end
--? print(s, e, soff, eoff, loff, hoff)
return App.width(line.data:sub(1, loff-1)), App.width(line.data:sub(1, hoff))
return App.width(line.data:sub(soff, loff-1)), App.width(line.data:sub(soff, hoff))
end
function Text.text_input(State, t)