From e8ec87255f94db9c6f1a0db10449f6304440a350 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 6 Jan 2023 17:38:40 -0800 Subject: [PATCH] bugfix lines.love was broken since Dec 23 X-( Didn't get caught because all my tests start at edit, not at main or run. I need 'integration' tests. --- run.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.lua b/run.lua index a736e20..45df7c9 100644 --- a/run.lua +++ b/run.lua @@ -154,9 +154,9 @@ function run.settings() } end -function run.mouse_pressed(x,y, mouse_button) +function run.mouse_press(x,y, mouse_button) Cursor_time = 0 -- ensure cursor is visible immediately after it moves - return edit.mouse_pressed(Editor_state, x,y, mouse_button) + return edit.mouse_press(Editor_state, x,y, mouse_button) end function run.mouse_release(x,y, mouse_button)