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

pull/250/head
ElementalAlchemist 3 years ago committed by Mike Lang
parent 78b9b5c68d
commit a8f9611d93

@ -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