diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-08-15 15:45:02 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-08-15 15:45:02 -0700 |
commit | 9e0cd4ad4cde0296350e5b0440ab6e6424dc1262 (patch) | |
tree | 5d190a7c157fb511eaf55a5af32e38a75adcc4f9 | |
parent | 974d17ffc071e2eb254d0dbc11cf932c62e59d5c (diff) | |
download | view.love-9e0cd4ad4cde0296350e5b0440ab6e6424dc1262.tar.gz |
stop confusingly reading a global
The way Text.draw is called by edit.draw, we know it'll never be called for lines above screen_top1.line. Comparing every line on screen with screen_top1 makes no sense. The intent is really just to compare with screen_top1 only for the first line, and otherwise to ignore this check.
-rw-r--r-- | text.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/text.lua b/text.lua index 3d70f93..bcecf7b 100644 --- a/text.lua +++ b/text.lua @@ -17,7 +17,7 @@ function Text.draw(State, line_index, y, startpos) -- wrap long lines local x = State.left local pos = 1 - local screen_line_starting_pos = State.screen_top1.pos + local screen_line_starting_pos = startpos if line_cache.fragments == nil then Text.compute_fragments(State, line_index) end @@ -26,7 +26,7 @@ function Text.draw(State, line_index, y, startpos) local frag, frag_text = f.data, f.text local frag_len = utf8.len(frag) --? print('text.draw:', frag, 'at', line_index,pos, 'after', x,y) - if Text.lt1({line=line_index, pos=pos}, State.screen_top1) then + if pos < startpos then -- render nothing --? print('skipping', frag) else |