Merge pull request #5193 from carlo-colombo/subtitle-offset-keybinding

This commit is contained in:
Bill Thornton
2024-08-16 11:52:12 -04:00
committed by GitHub
2 changed files with 23 additions and 0 deletions
+8
View File
@@ -1347,6 +1347,14 @@ export default function (view) {
case 'PageDown':
playbackManager.previousChapter(currentPlayer);
break;
case 'g':
case 'G':
subtitleSyncOverlay?.decrementOffset();
break;
case 'h':
case 'H':
subtitleSyncOverlay?.incrementOffset();
break;
}
}