Add help text to all header buttons

This commit is contained in:
Ricky Kresslein
2024-02-26 14:12:11 +01:00
committed by Ricky Kresslein
parent 7b34c7e72b
commit 238ddc7ad9
6 changed files with 8 additions and 0 deletions

View File

@@ -113,6 +113,7 @@ struct SubscriptionsView: View {
} label: {
Label("Play all unwatched", systemImage: "play")
}
.help("Play all unwatched")
.disabled(!feed.canPlayUnwatchedFeed)
}
@@ -130,6 +131,7 @@ struct SubscriptionsView: View {
} label: {
Label("Mark all as watched", systemImage: "checkmark.circle.fill")
}
.help("Mark all as watched")
.disabled(!feed.canMarkAllFeedAsWatched)
}
@@ -139,6 +141,7 @@ struct SubscriptionsView: View {
} label: {
Label("Mark all as unwatched", systemImage: "checkmark.circle")
}
.help("Mark all as unwatched")
}
}