Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-09-26 11:44:48 +08:00
parent 86a79a9733
commit 93e64a0988
14 changed files with 70 additions and 66 deletions

View File

@@ -68,7 +68,7 @@ class PlayerFocus extends StatelessWidget {
plPlayerController
..cancelLongPressTimer()
..longPressTimer ??= Timer.periodic(
const Duration(milliseconds: 200),
const Duration(milliseconds: 150),
(_) => _setVolume(isIncrease: isIncrease),
);
}
@@ -137,8 +137,8 @@ class PlayerFocus extends StatelessWidget {
final speed = isDigit1 ? 1.0 : 2.0;
if (speed != plPlayerController.playbackSpeed) {
plPlayerController.setPlaybackSpeed(speed);
SmartDialog.showToast('${speed}x播放');
}
SmartDialog.showToast('${speed}x播放');
}
return true;
}