make cursor more obvious

Let's see if this is good enough. I can also bump up to 4px radius if I
need to.
This commit is contained in:
Kartik K. Agaram 2022-06-04 11:46:01 -07:00
parent a4cec2f58a
commit 98f50f0b40
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ end
function Text.draw_cursor(x, y)
love.graphics.setColor(1,0,0)
love.graphics.circle('fill', x,y+Line_height, 2)
love.graphics.circle('fill', x,y+Line_height, 3)
love.graphics.setColor(0,0,0)
Cursor_x = x
Cursor_y = y+Line_height