about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-01-06 17:49:50 -0800
committerKartik K. Agaram <vc@akkartik.com>2023-01-06 17:49:50 -0800
commit70334e9dac43e2927495818d31e8ef2d5ad17384 (patch)
tree9ecd6c8a43dadd2927c90e323fbfa4fd71311220
parent77e56a61d892a0ee1a384f60ce3835a8bbc59cb5 (diff)
parentab44ed033209cd3d016f65f6e7fe1f0267d74527 (diff)
downloadview.love-70334e9dac43e2927495818d31e8ef2d5ad17384.tar.gz
Merge text.love
-rw-r--r--run.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.lua b/run.lua
index 576fbd1..2ada1ba 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)