From af276c42f8b3e325bcaa771e9c17af9c22aa7a5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC?= Date: Fri, 10 Apr 2026 22:02:43 +0800 Subject: [PATCH] fix: hide thin progress bar during drag when Controls already visible --- lib/plugin/pl_player/view/view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugin/pl_player/view/view.dart b/lib/plugin/pl_player/view/view.dart index 95b69d0dd..5c7dc6adf 100644 --- a/lib/plugin/pl_player/view/view.dart +++ b/lib/plugin/pl_player/view/view.dart @@ -1729,7 +1729,7 @@ class _PLVideoPlayerState extends State () { final showControls = plPlayerController.showControls.value; final isDragging = _isDraggingProgress.value; - final offstage = isDragging + final offstage = isDragging && !showControls ? false : switch (plPlayerController.progressType) { BtmProgressBehavior.onlyShowFullScreen =>