about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-01-06 17:47:26 -0800
committerKartik K. Agaram <vc@akkartik.com>2023-01-06 17:47:26 -0800
commitab44ed033209cd3d016f65f6e7fe1f0267d74527 (patch)
treed6c1b7cffc737fc04f6ce3e5c2bacf4344b51ad2
parentf611eabad811d552146398e3c8ad877f50a65bbe (diff)
parente8ec87255f94db9c6f1a0db10449f6304440a350 (diff)
downloadtext.love-ab44ed033209cd3d016f65f6e7fe1f0267d74527.tar.gz
Merge lines.love
-rw-r--r--run.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.lua b/run.lua
index 3062611..fb1f9c1 100644
--- a/run.lua
+++ b/run.lua
@@ -149,9 +149,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)