drop unused arg

This commit is contained in:
Kartik K. Agaram 2022-05-19 08:17:34 -07:00
parent 6a5864e382
commit 76dbb4bd1e
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ function Text.in_line(line, x,y)
return x >= 16 and y >= line.y and y < line.y+15*Zoom
end
function Text.move_cursor(line_index, line, x, hint)
function Text.move_cursor(line_index, line, x)
Cursor_line = line_index
Cursor_pos = Text.nearest_cursor_pos(line.data, x)
end