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 10:56:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-05-23 10:56:39 -0700
commite0b2c2dedebd192d8f393bc8053e7f68724e93d7 (patch)
tree36d1d50cac60b5f163db67d2b9cd1150932e27b8 /main.lua
parent4f6a324975b66a4939dc4a4e66cc65871397a867 (diff)
downloadtext.love-e0b2c2dedebd192d8f393bc8053e7f68724e93d7.tar.gz
couple of tests for cursor down
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 ca69be6..c191fc4 100644
--- a/main.lua
+++ b/main.lua
@@ -122,10 +122,10 @@ function App.draw()
   local y = 15
   if Debug_main then print('== draw') end
   for line_index,line in ipairs(Lines) do
-    print(y, line_index, line)
+--?     print(y, line_index, line)
     if Debug_main then print('draw:', line_index, y) end
     if y + math.floor(15*Zoom) > App.screen.height then break end
-    print('a')
+--?     print('a')
     if line_index >= Screen_top1.line then
       Screen_bottom1.line = line_index
       if line.mode == 'text' and line.data == '' then