bugfix: rendering hyperlinks in wrapping lines

Scenario: a long line containing a hyperlink towards the end.
Before this commit the underline for the hyperlink was being rendered on
an x pixel starting from the start of the line.
This commit is contained in:
Kartik K. Agaram 2023-05-14 17:05:11 -07:00
parent 8e02c2c021
commit 47730a2b33
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)