This commit is contained in:
Kartik K. Agaram 2022-05-11 21:55:06 -07:00
parent 83b893df8c
commit 4850e78568
1 changed files with 4 additions and 4 deletions

View File

@ -88,6 +88,10 @@ function love.update(dt)
end
end
function love.mousepressed(x,y, button)
propagate_to_button_handers(x,y, button)
end
function love.mousereleased(x,y, button)
if lines.current then
if lines.current.pending then
@ -125,7 +129,3 @@ end
function love.keyreleased(key, scancode)
end
function love.mousepressed(x,y, button)
propagate_to_button_handers(x,y, button)
end