From 268efe15a08a48428e5009cafbd06a5fee3fc811 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 17 Dec 2023 00:54:10 -0800 Subject: [PATCH] merge bugfix --- 0012-on.mouse_press | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/0012-on.mouse_press b/0012-on.mouse_press index 27dd8d8..0b96fa2 100644 --- a/0012-on.mouse_press +++ b/0012-on.mouse_press @@ -1,5 +1,5 @@ on.mouse_press = function(x,y, mouse_button) - 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 return end -end \ No newline at end of file +end