[Feat] AB repeat and frame stepping (#241)

* feat: Add A-B repeat and frame  navigation features with new key binds and menu entries.

* playback options

* fix merge
This commit is contained in:
nz366 2026-04-03 18:16:01 +00:00 committed by GitHub
parent 069337e2ca
commit 6f5040a953
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 139 additions and 21 deletions

View file

@ -27,6 +27,9 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
bind!([], Key::Character(" ".into()), PlayPause);
bind!([], Key::Named(Named::ArrowLeft), SeekBackward);
bind!([], Key::Named(Named::ArrowRight), SeekForward);
bind!([], Key::Character(".".into()), NextFrame);
bind!([], Key::Character(",".into()), PreviousFrame);
bind!([], Key::Character("a".into()), AbRepeat);
key_binds
}