From b90c856e21d603b6d944d1684aea8686ffcc147f Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sun, 18 Dec 2022 14:04:50 +0100 Subject: [PATCH] Fix banner indicator position --- Shared/Videos/VideoBanner.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Shared/Videos/VideoBanner.swift b/Shared/Videos/VideoBanner.swift index 4841b8ff..db0fb887 100644 --- a/Shared/Videos/VideoBanner.swift +++ b/Shared/Videos/VideoBanner.swift @@ -250,10 +250,11 @@ struct VideoBanner: View { } @ViewBuilder private var timeView: some View { - VStack(alignment: .trailing, spacing: 2) { + VStack(alignment: .trailing) { PlayingIndicatorView(video: video, height: 10) .frame(width: 12, alignment: .trailing) .padding(.trailing, 3) + .padding(.bottom, timeLabel == nil ? 3 : 0) if let timeLabel { Text(timeLabel)