Tweak fav/reblog counts pref text

This commit is contained in:
Shadowfacts 2022-12-04 19:50:15 -05:00
parent 581f4b24bd
commit b90262bfd0
1 changed files with 2 additions and 2 deletions

View File

@ -24,9 +24,9 @@ struct WellnessPrefsView: View {
}
private var showFavAndReblogCount: some View {
Section(footer: Text("Control whether total favorite and reblog counts are shown for the main post in conversations.")) {
Section(footer: Text("Control whether the focused post in the conversation view shows total favorite and reblog counts.")) {
Toggle(isOn: $preferences.showFavoriteAndReblogCounts) {
Text("Show Favorite and Reblog Counts")
Text("Favorite and Reblog Counts in Conversations")
}
}
}