1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30

Music mode controls layout improvements

This commit is contained in:
Arkadiusz Fal 2022-08-29 17:57:43 +02:00
parent a2b9d4d938
commit 3a05462965

View File

@ -609,6 +609,7 @@ final class PlayerModel: ObservableObject {
}
func closeCurrentItem(finished: Bool = false) {
controls.hide()
pause()
closePiP()
@ -960,12 +961,16 @@ final class PlayerModel: ObservableObject {
musicMode.toggle()
if musicMode {
aspectRatio = VideoPlayerView.defaultAspectRatio
controls.presentingControls = true
controls.removeTimer()
backend.startMusicMode()
} else {
backend.stopMusicMode()
Delay.by(0.25) {
self.updateAspectRatio()
}
controls.resetTimer()
}