mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Dont show the mini player when expanded player is open on iPad landscape
This commit is contained in:
parent
126d79446b
commit
f14f92499b
1 changed files with 2 additions and 2 deletions
|
|
@ -161,12 +161,12 @@
|
|||
if let itemAudioProperties = self.audioController.itemAudioProperties, isPresented {
|
||||
ZStack(alignment: .bottom) {
|
||||
Color.systemBackground.edgesIgnoringSafeArea(.bottom)
|
||||
.frame(height: 88, alignment: .bottom)
|
||||
.frame(height: expanded ? 0 : 88, alignment: .bottom)
|
||||
|
||||
VStack {
|
||||
Spacer(minLength: 0)
|
||||
playerContent(itemAudioProperties)
|
||||
.frame(maxHeight: 88)
|
||||
.frame(maxHeight: expanded ? 0 : 88)
|
||||
.tint(.appGrayTextContrast)
|
||||
.background(Color.systemBackground)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue