replacement in text.lua at line 82
[5.1081]→[5.1081:1118](∅→∅) − if y >= App.screen.height then
+ if y >= State.bottom then
replacement in text.lua at line 159
− if State.cursor_y > App.screen.height - State.line_height then
+ if State.cursor_y > State.bottom - State.line_height then
replacement in text.lua at line 183
− if State.cursor_y > App.screen.height - State.line_height then
+ if State.cursor_y > State.bottom - State.line_height then
replacement in text.lua at line 192
− if State.cursor_y > App.screen.height - State.line_height then
+ if State.cursor_y > State.bottom - State.line_height then
replacement in text.lua at line 374
[5.139]→[5.152:183](∅→∅),
[5.485]→[5.152:183](∅→∅),
[5.749]→[5.152:183](∅→∅),
[5.2662]→[5.152:183](∅→∅),
[5.66327]→[5.152:183](∅→∅),
[5.152]→[5.152:183](∅→∅),
[5.183]→[5.2663:2713](∅→∅) − --? print(App.screen.height)
− local y = App.screen.height - State.line_height
+ local y = State.bottom - State.line_height
replacement in text.lua at line 627
[5.2683]→[5.6839:6899](∅→∅) − if State.top > App.screen.height - State.line_height then
+ if State.top > State.bottom - State.line_height then
replacement in text.lua at line 642
[5.3208]→[5.3208:3258](∅→∅) − local y = App.screen.height - State.line_height
+ local y = State.bottom - State.line_height
replacement in text.lua at line 912
[5.5776]→[5.3494:3599](∅→∅) − pos=Text.to_pos_on_line(State, State.screen_bottom1.line, State.right-5, App.screen.height-5),
+ pos=Text.to_pos_on_line(State, State.screen_bottom1.line, State.right-5, State.bottom-5),
replacement in edit.lua at line 20
[5.596]→[5.5097:5219](∅→∅) − function edit.initialize_state(top, left, right, font_height, line_height) -- currently always draws to bottom of screen
+ function edit.initialize_state(top, bottom, left, right, font_height, line_height)
edit in edit.lua at line 61
+ bottom = bottom or App.screen.height,
replacement in edit.lua at line 126
− if y + State.line_height > App.screen.height then break end
+ if y + State.line_height > State.bottom then break end
edit in edit.lua at line 418
+ nil, -- to bottom of screen
replacement in 0011-on.initialize at line 5
[4.3276]→[4.3276:3379](∅→∅) − Editor_state = edit.initialize_state(100, 100, 400, love.graphics.getFont():getHeight(), Line_height)
+ Editor_state = edit.initialize_state(100, 300, 100, 400, love.graphics.getFont():getHeight(), Line_height)
replacement in 0011-on.initialize at line 7
[4.3410]→[4.3410:3413](∅→∅)