Skip to content

Commit

Permalink
fix doubleTap player panel display logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ErBWs committed Jan 22, 2025
1 parent 5480867 commit d95e53c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/pages/player/player_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ class _PlayerItemState extends State<PlayerItem>
if (Utils.isDesktop()) {
handleFullscreen();
} else {
if (playerController.showVideoController) {
hideVideoController();
} else {
if (playerController.playerPlaying) {
displayVideoController();
} else {
hideVideoController();
}
if (playerController.lockPanel) {
return;
Expand Down

0 comments on commit d95e53c

Please sign in to comment.