diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2024-05-19 22:41:52 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2024-05-19 22:41:52 -0700 |
commit | 8219db2bcd31bee0f5cf5c4a92c3f6cd6a684e6d (patch) | |
tree | d13e18eb9bee7620339baafa3e8aefc2fccabeac | |
parent | b6102d04897a795818cd43ff2d48e20417a927e5 (diff) | |
download | text.love-8219db2bcd31bee0f5cf5c4a92c3f6cd6a684e6d.tar.gz |
mousefocus handler
-rw-r--r-- | main.lua | 11 |
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 |