stop returning unused value
This commit is contained in:
parent
028e3ff6f6
commit
cf7bff30f7
2
edit.lua
2
edit.lua
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue