From 1a60c8e6df6f69171268230470cbb487ffd46940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D1=81=D0=B8=D1=81=D1=82=D0=B5=D0=BC?= Date: Sat, 11 Apr 2026 14:45:54 +0800 Subject: [PATCH] fix: show thin progress bar during drag when progressType is alwaysHide --- lib/plugin/pl_player/view/view.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/plugin/pl_player/view/view.dart b/lib/plugin/pl_player/view/view.dart index 5c7dc6adf..1ff2262b2 100644 --- a/lib/plugin/pl_player/view/view.dart +++ b/lib/plugin/pl_player/view/view.dart @@ -1719,8 +1719,7 @@ class _PLVideoPlayerState extends State ), /// 进度条 live模式下禁用 - if (!isLive && - plPlayerController.progressType != BtmProgressBehavior.alwaysHide) + if (!isLive) Positioned( bottom: -2.2, left: 0, @@ -1732,6 +1731,7 @@ class _PLVideoPlayerState extends State final offstage = isDragging && !showControls ? false : switch (plPlayerController.progressType) { + BtmProgressBehavior.alwaysHide => true, BtmProgressBehavior.onlyShowFullScreen => showControls || !isFullScreen, BtmProgressBehavior.onlyHideFullScreen =>