From 38d21ab237458460bac64c3b406dc8971f57f746 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 17 Dec 2023 00:53:12 -0800 Subject: [PATCH] merge bugfix --- 0016-on.mouse_press | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/0016-on.mouse_press b/0016-on.mouse_press index 2f2ed31..6e8faa6 100644 --- a/0016-on.mouse_press +++ b/0016-on.mouse_press @@ -2,7 +2,7 @@ on.mouse_press = function(x,y, mouse_button) -- == menu area -- some hysteresis right after a button has been pressed if Active_button then return end - if mouse_press_consumed_by_any_button_handler(Global_state, x,y, mouse_button) then + if mouse_press_consumed_by_any_button(Global_state, x,y, mouse_button) then Button_pressed = true return end @@ -49,4 +49,4 @@ on.mouse_press = function(x,y, mouse_button) call_protected(car.mousepressed, x,y, mouse_button) end end -end \ No newline at end of file +end