From ff88238ff1b1eea63a3e4d827ed0e9acb254d0d1 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 11 Jun 2022 20:50:53 -0700 Subject: bugfix: BSOD in #4. I messed up a function call in commit 391d764e13. --- text.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'text.lua') diff --git a/text.lua b/text.lua index 0a599ce..492b682 100644 --- a/text.lua +++ b/text.lua @@ -666,11 +666,11 @@ function Text.snap_cursor_to_bottom_of_screen() Text.redraw_all() -- if we're scrolling, reclaim all fragments to avoid memory leaks end -function Text.in_line(line, x,y) +function Text.in_line(line_index,line, x,y) if line.y == nil then return false end -- outside current page if x < 25 then return false end if y < line.y then return false end - Text.populate_screen_line_starting_pos(Cursor1.line) + Text.populate_screen_line_starting_pos(line_index) return y < line.y + #line.screen_line_starting_pos * Line_height end -- cgit 1.4.1-2-gfad0