From 37d3f435966c3461b5b1a1f6943134b6e9124e08 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 9 Dec 2023 21:58:45 +0100 Subject: [PATCH] Add channel view help labels --- Shared/Channels/ChannelVideosView.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Shared/Channels/ChannelVideosView.swift b/Shared/Channels/ChannelVideosView.swift index b9210952..dc7e581b 100644 --- a/Shared/Channels/ChannelVideosView.swift +++ b/Shared/Channels/ChannelVideosView.swift @@ -364,6 +364,7 @@ struct ChannelVideosView: View { } } label: { Label("Unsubscribe", systemImage: "xmark.circle") + .help("Unsubscribe") #if os(iOS) .labelStyle(.automatic) #else @@ -380,6 +381,7 @@ struct ChannelVideosView: View { } } label: { Label("Subscribe", systemImage: "circle") + .help("Subscribe") #if os(iOS) .labelStyle(.automatic) #else @@ -413,6 +415,7 @@ struct ChannelVideosView: View { feed.markChannelAsWatched(channel.id) } label: { Label("Mark channel feed as watched", systemImage: "checkmark.circle.fill") + .help("Mark channel feed as watched") } .disabled(!feed.canMarkAllFeedAsWatched) } @@ -423,6 +426,7 @@ struct ChannelVideosView: View { feed.markChannelAsUnwatched(channel.id) } label: { Label("Mark channel feed as unwatched", systemImage: "checkmark.circle") + .help("Mark channel feed as unwatched") } }