We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a6af4 commit 5b3c520Copy full SHA for 5b3c520
1 file changed
app/src/main/java/com/github/libretube/ui/views/CustomExoPlayerView.kt
@@ -1020,6 +1020,11 @@ abstract class CustomExoPlayerView(
1020
keepScreenOn = player.isPlaying == true
1021
onPlayerEvent(player, events)
1022
}
1023
+
1024
+ if (events.contains(Player.EVENT_RENDERED_FIRST_FRAME)) {
1025
+ // if the video is not starting automatically, show the controller
1026
+ if (!PlayerHelper.playAutomatically) showControllerPermanently()
1027
+ }
1028
1029
1030
open fun minimizeOrExitPlayer() = Unit
0 commit comments