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-23 15:38:42 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-23 15:38:42 -0700
commit6b10c94dd5143ad50ac958a5b5c60300b3755754 (patch)
tree6187c2bd427a9f2cdb16e9b5b0e36506b243ab72 /main.lua
parent8b5fdffd7dc02176bf0805541ac84980ed1ad1b3 (diff)
downloadtext.love-6b10c94dd5143ad50ac958a5b5c60300b3755754.tar.gz
disable all debug prints
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.lua b/main.lua
index 796d711..6951158 100644
--- a/main.lua
+++ b/main.lua
@@ -231,11 +231,11 @@ function App.keychord_pressed(chord)
   elseif chord == 'pagedown' then
     Screen_top1.line = Screen_bottom1.line
     Screen_top1.pos = Screen_bottom1.pos
-    print('setting top to', Screen_top1.line)
+--?     print('setting top to', Screen_top1.line)
     Cursor1.line = Screen_top1.line
     Cursor1.pos = Screen_top1.pos
     Text.move_cursor_down_to_next_text_line_while_scrolling_again_if_necessary()
-    print('top now', Screen_top1.line)
+--?     print('top now', Screen_top1.line)
   elseif chord == 'pageup' then
     -- duplicate some logic from love.draw
     local y = App.screen.height