stop returning unused value

This commit is contained in:
Kartik K. Agaram 2024-07-28 19:10:41 -07:00
parent 028e3ff6f6
commit cf7bff30f7
1 changed files with 0 additions and 2 deletions

View File

@ -106,7 +106,6 @@ function edit.valid_loc(Editor, loc)
return Editor.lines[loc.line].mode == loc.mode
end
-- return y drawn until
function edit.draw(Editor)
Editor.button_handlers = {}
love.graphics.setFont(Editor.font)
@ -213,7 +212,6 @@ function edit.draw(Editor)
if Editor.search_term then
Text.draw_search_bar(Editor)
end
return y
end
function edit.update(Editor, dt)