diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-05-14 17:05:11 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-05-14 17:05:11 -0700 |
commit | 47730a2b3381b4431529e32a2b268ac1cb0a85a6 (patch) | |
tree | f506af2180d5838defe217dc5a8291fad8fa6d12 | |
parent | 8e02c2c0218b4e233f14d130f7d339128886f763 (diff) | |
download | view.love-47730a2b3381b4431529e32a2b268ac1cb0a85a6.tar.gz |
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.
-rw-r--r-- | source_text.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source_text.lua b/source_text.lua index 30f4bd4..ae5f88c 100644 --- a/source_text.lua +++ b/source_text.lua @@ -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) |