Player layout fixes

This commit is contained in:
Arkadiusz Fal
2022-07-09 02:21:04 +02:00
parent fc2e16701d
commit 868e5fcbc7
12 changed files with 198 additions and 102 deletions

View File

@@ -110,7 +110,9 @@ final class NavigationModel: ObservableObject {
navigation.sidebarSectionChanged.toggle()
navigation.tabSelection = .recentlyOpened(recent.tag)
} else {
navigation.presentingChannel = true
withAnimation {
navigation.presentingChannel = true
}
}
}
}
@@ -139,7 +141,9 @@ final class NavigationModel: ObservableObject {
navigation.sidebarSectionChanged.toggle()
navigation.tabSelection = .recentlyOpened(recent.tag)
} else {
navigation.presentingPlaylist = true
withAnimation {
navigation.presentingPlaylist = true
}
}
}
}