diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-06-04 11:46:01 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-06-04 11:46:43 -0700 |
commit | 98f50f0b404b48bc38d95126939aefa6c3bea139 (patch) | |
tree | 408235ffc44a835a4d6ef9c4f8f048f3195905ad | |
parent | a4cec2f58a6c5b8cbef143217f9168ac4bb7e11d (diff) | |
download | view.love-98f50f0b404b48bc38d95126939aefa6c3bea139.tar.gz |
make cursor more obvious
Let's see if this is good enough. I can also bump up to 4px radius if I need to.
-rw-r--r-- | text.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/text.lua b/text.lua index 30f000f..d3cc29d 100644 --- a/text.lua +++ b/text.lua @@ -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 |