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