[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:
parent
069337e2ca
commit
6f5040a953
4 changed files with 139 additions and 21 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue