Disable subtitles for now, as they can cause video stream hangs. Add bindings for fullscreen

This commit is contained in:
Jeremy Soller 2024-10-07 13:14:30 -06:00
parent cb942cd6a1
commit 644661e38d
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
2 changed files with 31 additions and 1 deletions

View file

@ -61,6 +61,8 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
}
//TODO: key bindings
bind!([], Key::Character("f".into()), Fullscreen);
bind!([Alt], Key::Named(Named::Enter), Fullscreen);
bind!([], Key::Named(Named::Space), PlayPause);
bind!([], Key::Named(Named::ArrowLeft), SeekBackward);
bind!([], Key::Named(Named::ArrowRight), SeekForward);