We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
I noticed from my media key issue that this is a very simple change:
--- a/src/renderer/VideoPlayer.tsx +++ b/src/renderer/VideoPlayer.tsx @@ -721,8 +721,9 @@ export const VideoPlayer = (props: IProps) => { return; } - if (e.key === 'k') { + if (e.key === 'k' || e.key === ' ') { togglePlaying(); + e.preventDefault(); } if (e.key === 'j' || e.key === 'ArrowLeft') {
Though it prevents space from scrolling down the list and working during when selecting buttons with tab. Is this the intention?
Sorry, something went wrong.
Thanks. I've grabbed this change. It was never intentional for space to have any effects otherwise so happy to lose those.
e1c3c79
No branches or pull requests
The text was updated successfully, but these errors were encountered: