Added Hide the comment section under player Option

Option was made by arichorn
Option was based off of Dayanch96’s YTLite Adblock
This commit is contained in:
arichorn 2023-09-18 21:42:57 -05:00 committed by GitHub
parent fa313c15cd
commit 361de02ff1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1585,8 +1585,18 @@ extern NSBundle *uYouPlusBundle();
}
settingItemId:0],
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"Hide the comment section under player")
titleDescription:LOC(@"Hides the Comment Section below the player.")
accessibilityIdentifier:nil
switchOn:IsEnabled(@"noCommentSection_enabled")
switchBlock:^BOOL (YTSettingsCell *cell, BOOL enabled) {
[[NSUserDefaults standardUserDefaults] setBool:enabled forKey:@"noCommentSection_enabled"];
return YES;
}
settingItemId:0],
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"Hide all videos under player")
titleDescription:LOC(@"Hides all videos below the player, leaving only the video info and comments section.")
titleDescription:LOC(@"Hides all videos below the player.")
accessibilityIdentifier:nil
switchOn:IsEnabled(@"noRelatedWatchNexts_enabled")
switchBlock:^BOOL (YTSettingsCell *cell, BOOL enabled) {