From b90262bfd0f09673c16d59b7d8a3e9b6ee50f66d Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sun, 4 Dec 2022 19:50:15 -0500 Subject: [PATCH] Tweak fav/reblog counts pref text --- Tusker/Screens/Preferences/WellnessPrefsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tusker/Screens/Preferences/WellnessPrefsView.swift b/Tusker/Screens/Preferences/WellnessPrefsView.swift index 100c26fe..57434271 100644 --- a/Tusker/Screens/Preferences/WellnessPrefsView.swift +++ b/Tusker/Screens/Preferences/WellnessPrefsView.swift @@ -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") } } }