mousemoved handler
Dependencies
Change contents
- edit in main.lua at line 322
function App.mousemoved(x,y, dx,dy, is_touch)if current_app_is_warning() then return endif Current_app == 'run' thenif run.mouse_move then run.mouse_move(dx,dy) endelseif Current_app == 'source' thenif source.mouse_move then source.mouse_move(dx,dy) endelseassert(false, 'unknown app "'..Current_app..'"')endend