bugfix: text past cursor was rendered red on wrapped lines

This commit is contained in:
Kartik K. Agaram 2022-05-19 22:41:03 -07:00
parent 2f8d727c0b
commit e2b371ea37
2 changed files with 3 additions and 0 deletions

View File

@ -119,6 +119,7 @@ function love.draw()
-- cursor
love.graphics.setColor(1,0,0)
love.graphics.circle('fill', 25,y+math.floor(15*Zoom), 2)
love.graphics.setColor(0,0,0)
end
y = y + math.floor(15*Zoom) -- text height
elseif line.mode == 'drawing' then

View File

@ -70,6 +70,7 @@ function Text.draw(line, line_width, line_index, cursor_line, cursor_pos)
-- cursor
love.graphics.setColor(1,0,0)
love.graphics.circle('fill', x+Text.cursor_x2(frag, cursor_pos-pos+1),y+math.floor(15*Zoom), 2)
love.graphics.setColor(0,0,0)
end
end
x = x + frag_width
@ -79,6 +80,7 @@ function Text.draw(line, line_width, line_index, cursor_line, cursor_pos)
-- cursor
love.graphics.setColor(1,0,0)
love.graphics.circle('fill', x,y+math.floor(15*Zoom), 2)
love.graphics.setColor(0,0,0)
end
return y
end