about summary refs log tree commit diff stats
path: root/text.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-04 11:46:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-04 11:46:43 -0700
commit98f50f0b404b48bc38d95126939aefa6c3bea139 (patch)
tree408235ffc44a835a4d6ef9c4f8f048f3195905ad /text.lua
parenta4cec2f58a6c5b8cbef143217f9168ac4bb7e11d (diff)
downloadtext.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.
Diffstat (limited to 'text.lua')
-rw-r--r--text.lua2
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