about summary refs log tree commit diff stats
path: root/main.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2024-05-19 22:41:52 -0700
committerKartik K. Agaram <vc@akkartik.com>2024-05-19 22:41:52 -0700
commit8219db2bcd31bee0f5cf5c4a92c3f6cd6a684e6d (patch)
treed13e18eb9bee7620339baafa3e8aefc2fccabeac /main.lua
parentb6102d04897a795818cd43ff2d48e20417a927e5 (diff)
downloadlines.love-8219db2bcd31bee0f5cf5c4a92c3f6cd6a684e6d.tar.gz
mousefocus handler
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/main.lua b/main.lua
index 2cb7192..232308e 100644
--- a/main.lua
+++ b/main.lua
@@ -341,6 +341,17 @@ function App.wheelmoved(dx,dy)
   end
 end
 
+function App.mousefocus(in_focus)
+  if current_app_is_warning() then return end
+  if Current_app == 'run' then
+    if run.mouse_focus then run.mouse_focus(in_focus) end
+  elseif Current_app == 'source' then
+    if source.mouse_focus then source.mouse_focus(in_focus) end
+  else
+    assert(false, 'unknown app "'..Current_app..'"')
+  end
+end
+
 function love.quit()
   if Disable_all_quit_handlers then return end
   if current_app_is_warning() then return end