diff --git a/parts/scenes/app_stopwatch.lua b/parts/scenes/app_stopwatch.lua index bd041414..af3ebd17 100644 --- a/parts/scenes/app_stopwatch.lua +++ b/parts/scenes/app_stopwatch.lua @@ -35,6 +35,14 @@ end function scene.mouseUp() release() end +function scene.touchDown() + press() +end +function scene.touchUp() + if #love.touch.getTouches()==0 then + release() + end +end function scene.keyDown(key,isRep) if isRep then return end if key=='escape'then