about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--source_text.lua2
-rw-r--r--text.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/source_text.lua b/source_text.lua
index 3f5ec74..b68bf85 100644
--- a/source_text.lua
+++ b/source_text.lua
@@ -12,7 +12,7 @@ function Text.draw(State, line_index, y, startpos, hide_cursor)
   local x = State.left
   local pos = 1
   local screen_line_starting_pos = startpos
-  Text.compute_fragments(State, line_index)
+  Text.populate_screen_line_starting_pos(State, line_index)
   local pos = 1
   initialize_color()
   for _, f in ipairs(line_cache.fragments) do
diff --git a/text.lua b/text.lua
index cc9dcb7..0dcd607 100644
--- a/text.lua
+++ b/text.lua
@@ -12,7 +12,7 @@ function Text.draw(State, line_index, y, startpos)
   local x = State.left
   local pos = 1
   local screen_line_starting_pos = startpos
-  Text.compute_fragments(State, line_index)
+  Text.populate_screen_line_starting_pos(State, line_index)
   for _, f in ipairs(line_cache.fragments) do
     App.color(Text_color)
     local frag_len = utf8.len(f)