jf-roku/components/PlaybackDialog.bs
2023-10-03 11:42:10 -04:00

10 lines
172 B
Plaintext

function onKeyEvent(key as string, press as boolean) as boolean
if key = "OK"
m.top.close = true
return true
end if
return false
end function