about summary refs log tree commit diff stats
path: root/text.lua
diff options
context:
space:
mode:
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 f4181d8..b20809a 100644
--- a/text.lua
+++ b/text.lua
@@ -38,7 +38,7 @@ function Text.draw(line, line_width, line_index, cursor_line, cursor_pos)
     x = x + frag_width
     pos = pos + frag_len
   end
-  if cursor_pos == pos then
+  if line_index == cursor_line and cursor_pos == pos then
     Text.draw_cursor(x, y)
   end
   return y