Update quality indicator when keyboard shortcuts are used to change the video quality

pull/249/head
ElementalAlchemist 4 years ago
parent 5653496d9b
commit 164d2d7278

@ -10,6 +10,8 @@ function moveSpeed(amount) {
return; // We've reached/exceeded the edge
}
videoElement.playbackRate = PLAYBACK_RATES[currentIndex];
const playbackSelector = document.getElementById("video-controls-playback-speed");
playbackSelector.value = videoElement.playbackRate;
}
function increaseSpeed() {

Loading…
Cancel
Save