Merge pull request #671 from jimdogx/feature/637-replay-back

Jump to start of row when user hits replay.
This commit is contained in:
Jimi 2022-06-28 05:44:00 -06:00 committed by GitHub
commit b25ea1846e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -892,6 +892,10 @@ function onKeyEvent(key as string, press as boolean) as boolean
end if
handled = true
end if
if key = "replay"
m.top.jumpToRowItem = [m.top.rowItemFocused[0], 0]
end if
end if
return handled
end function