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

Fix selecting video details tab on sidebar visibility change

This commit is contained in:
Arkadiusz Fal 2022-01-09 16:11:03 +01:00
parent a04827cc56
commit ce8a8cbef3

View File

@ -5,7 +5,7 @@ import SwiftUI
struct VideoDetails: View {
enum Page {
case info, queue, related, comments
case info, comments, related, queue
}
@Binding var sidebarQueue: Bool
@ -129,7 +129,7 @@ struct VideoDetails: View {
}
.onChange(of: sidebarQueue) { queue in
if queue {
if currentPage == .queue {
if currentPage == .related || currentPage == .queue {
currentPage = .info
}
} else if video.isNil {