From e222b195767d6764e7aa0daa6bfec9fde74e8f0a Mon Sep 17 00:00:00 2001 From: shenlong <139912620+shenlong-tanwen@users.noreply.github.com> Date: Tue, 9 Jun 2026 03:17:08 +0530 Subject: [PATCH] fix: do not handle drag without enough scrub area (#28921) Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> --- mobile/lib/presentation/widgets/timeline/scrubber.widget.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mobile/lib/presentation/widgets/timeline/scrubber.widget.dart b/mobile/lib/presentation/widgets/timeline/scrubber.widget.dart index 5eda237ec4..27f523a2a8 100644 --- a/mobile/lib/presentation/widgets/timeline/scrubber.widget.dart +++ b/mobile/lib/presentation/widgets/timeline/scrubber.widget.dart @@ -221,6 +221,10 @@ class ScrubberState extends ConsumerState with TickerProviderStateMixi return; } + if (_scrubberHeight <= 0) { + return; + } + if (_thumbAnimationController.status != AnimationStatus.forward) { _thumbAnimationController.forward(); }