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.
This commit is contained in:
Kartik K. Agaram 2023-01-06 17:38:40 -08:00
parent c7de47440b
commit e8ec87255f
1 changed files with 2 additions and 2 deletions

View File

@ -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)