aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/content.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts
index 71434eb7..51b96aeb 100644
--- a/src/content.ts
+++ b/src/content.ts
@@ -454,7 +454,9 @@ function videoIDChange(): void {
}
function handleMobileControlsMutations(): void {
- if (!chrome.runtime?.id) return;
+ // Don't update while scrubbing
+ if (!chrome.runtime?.id
+ || document.querySelector(".YtProgressBarProgressBarPlayheadDotInDragging")) return;
updateVisibilityOfPlayerControlsButton();