Skip to content

Commit

Permalink
Merge pull request #979 from dennis531/additional-playback-hotkey
Browse files Browse the repository at this point in the history
Additional Hotkey to play back video in the subtitle editor
  • Loading branch information
Arnei authored Apr 6, 2023
2 parents 308ee3d + 7bb3c4a commit a979588
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/globalKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export const videoPlayerKeyMap: KeyMap = {
play: {
name: "keyboardControls.videoPlayButton",
sequence: rewriteKeys("Space"),
sequences: [rewriteKeys("Control+Alt+Space"), "Space"],
action: "keydown",
group: groupVideoPlayer,
},
Expand Down
2 changes: 1 addition & 1 deletion src/main/KeyboardControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Group: React.FC<{name: string, entries: KeyMapDisplayOptions[]}> = ({name,
const groupStyle = css({
display: 'flex',
flexDirection: 'column' as const,
width: '420px',
width: '460px',
maxWidth: '50vw',
});

Expand Down

0 comments on commit a979588

Please sign in to comment.