1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-20 05:41:23 +00:00

Fix opening directly fullscreen on tablets

This commit is contained in:
Stypox
2021-03-28 12:03:33 +02:00
parent 2dfe837c35
commit c6316abbce
3 changed files with 19 additions and 10 deletions

View File

@@ -366,15 +366,7 @@ public final class NavigationHelper {
if (switchingPlayers) {
// Situation when user switches from players to main player. All needed data is
// here, we can start watching (assuming newQueue equals playQueue).
// Starting directly in fullscreen if the previous player type was popup.
if (playerType == MainPlayer.PlayerType.POPUP
&& !DeviceUtils.isLandscape(context)
&& PlayerHelper.globalScreenOrientationLocked(context)) {
detailFragment.onScreenRotationButtonClicked();
}
// pass false to directlyFullscreenIfApplicable since that's handled just above here
detailFragment.openVideoPlayer(false);
detailFragment.openVideoPlayer(true);
} else {
detailFragment.selectAndLoadVideo(serviceId, url, title, playQueue);
}