diff --git a/lib/plugin/pl_player/view.dart b/lib/plugin/pl_player/view.dart index 431240b0..62281a53 100644 --- a/lib/plugin/pl_player/view.dart +++ b/lib/plugin/pl_player/view.dart @@ -253,11 +253,12 @@ class _PLVideoPlayerState extends State ), height: 32.0, width: 70.0, - child: const Center( - child: Text( - '倍速中', - style: TextStyle(color: Colors.white, fontSize: 13), - ), + child: Center( + child: Obx(() => Text( + '${_.enableAutoLongPressSpeed ? _.playbackSpeed * 2 : _.longPressSpeed}倍速中', + style: const TextStyle( + color: Colors.white, fontSize: 13), + )), )), ), ),