merge bugfix

This commit is contained in:
Kartik K. Agaram 2023-12-17 00:50:01 -08:00
parent d10ec611c7
commit 469bde71cd
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
on.mouse_press = function(x,y, mouse_button)
if mouse_press_consumed_by_any_button_handler(Buttons, x,y, mouse_button) then
if mouse_press_consumed_by_any_button(Buttons, x,y, mouse_button) then
return
end
if x >= X and x < X+Square_side and y >= Y and y < Y+Square_side then
@ -17,4 +17,4 @@ on.mouse_press = function(x,y, mouse_button)
-- ensure keyboard is out in mobile devices
love.keyboard.setTextInput(true)
end
end
end