feat(YouTube - Comments): Add Hide Thanks button and Hide 'Comments by members' header options (#3317)

This commit is contained in:
ILoveOpenSourceApplications
2024-06-09 14:45:08 +05:30
committed by GitHub
parent a6d575fde7
commit 9c4c4f05a7
2 changed files with 18 additions and 10 deletions

View File

@ -62,9 +62,11 @@ object CommentsPatch : ResourcePatch() {
PreferenceScreen(
"revanced_comments_screen",
preferences = setOf(
SwitchPreference("revanced_hide_preview_comment"),
SwitchPreference("revanced_hide_comments_by_members_header"),
SwitchPreference("revanced_hide_comments_section"),
SwitchPreference("revanced_hide_comment_timestamp_and_emoji_buttons")
SwitchPreference("revanced_hide_comments_preview_comment"),
SwitchPreference("revanced_hide_comments_thanks_button"),
SwitchPreference("revanced_hide_comments_timestamp_and_emoji_buttons")
),
sorting = PreferenceScreen.Sorting.UNSORTED
)