bugfix typo

This commit is contained in:
Kartik K. Agaram 2022-05-17 20:51:39 -07:00
parent 476bbcdadf
commit 91ce333ae0
2 changed files with 3 additions and 1 deletions

View File

@ -160,7 +160,7 @@ function love.mousepressed(x,y, button)
for line_index,line in ipairs(Lines) do
if line.mode == 'text' then
-- move cursor
if x >= 16 and y >= line.y and y < y+15*Zoom then
if x >= 16 and y >= line.y and y < line.y+15*Zoom then
Cursor_line = line_index
Cursor_pos = Text.nearest_cursor_pos(line.data, x, 1)
end

View File

@ -1,6 +1,8 @@
file load:
cursor_line = 1
first line is a drawing -> cursor_line = 2
click on text -> cursor moves
click on drawing -> cursor doesn't move
create drawing -> cursor bumps down below drawing
backspace
cursor_pos == 0, previous line is a drawing -> delete drawing, cursor still visible at start of line