about summary refs log tree commit diff stats
path: root/main.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-05-21 20:52:44 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-21 20:52:44 -0700
commit1e63bf0e0a58860bbdf9fce02f551c2d00fa2c0f (patch)
tree63a88d01376106a0fc62e5f5647528a516f94ba5 /main.lua
parent6550a4c6d7d23d7769142b3d86eaa8f70f216970 (diff)
downloadtext.love-1e63bf0e0a58860bbdf9fce02f551c2d00fa2c0f.tar.gz
I feel confident now that page-down is working.
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.lua b/main.lua
index 3da6a57..f6f5cfe 100644
--- a/main.lua
+++ b/main.lua
@@ -141,11 +141,12 @@ function love.draw()
         y = y + Drawing.pixels(line.h) + 10 -- padding
       else
         line.y = y
-        y = Text.draw(line, Line_width, line_index)
+        y, Screen_bottom1.pos = Text.draw(line, Line_width, line_index)
         y = y + math.floor(15*Zoom)  -- text height
       end
     end
   end
+--?   print('screen bottom: '..tostring(Screen_bottom1.pos)..' in '..tostring(Lines[Screen_bottom1.line].data))
 --?   os.exit(1)
 end
 
@@ -216,7 +217,7 @@ function keychord_pressed(chord)
     save_to_disk(Lines, Filename)
   elseif chord == 'pagedown' then
     Screen_top1.line = Screen_bottom1.line
-    Screen_top1.pos = 1
+    Screen_top1.pos = Screen_bottom1.pos
     Cursor1.line = Screen_top1.line
     Cursor1.pos = Screen_top1.pos
     Text.move_cursor_down_to_next_text_line_while_scrolling_again_if_necessary()