From 1b2f4ed3e4ae67d88648a885e6ca69bc0b166be7 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 7 Mar 2024 08:50:24 -0700 Subject: [PATCH] Fix motion scrubbing lockout --- web/src/components/player/DynamicVideoPlayer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/player/DynamicVideoPlayer.tsx b/web/src/components/player/DynamicVideoPlayer.tsx index 4a96bf19c..a7b56964e 100644 --- a/web/src/components/player/DynamicVideoPlayer.tsx +++ b/web/src/components/player/DynamicVideoPlayer.tsx @@ -453,7 +453,7 @@ export class DynamicVideoController { } if (time > this.preview.end) { - if (this.clipChangeLockout) { + if (this.clipChangeLockout && time - this.preview.end < 30) { return; } @@ -470,7 +470,7 @@ export class DynamicVideoController { } if (time < this.preview.start) { - if (this.clipChangeLockout) { + if (this.clipChangeLockout && this.preview.start - time < 30) { return; }