Close fullscreen and restore portrait on closing player

This commit is contained in:
Arkadiusz Fal 2022-03-27 21:17:52 +02:00
parent 61054862d2
commit 2e7cbda5dc

View File

@ -129,8 +129,15 @@ final class PlayerModel: ObservableObject {
}
func hide() {
controls.playingFullscreen = false
presentingPlayer = false
playerNavigationLinkActive = false
#if os(iOS)
if Defaults[.lockPortraitWhenBrowsing] {
Orientation.lockOrientation(.portrait, andRotateTo: .portrait)
}
#endif
}
func togglePlayer() {