Update uYouPlus.xm

This commit is contained in:
arichorn 2023-09-20 20:12:49 -05:00 committed by GitHub
parent 5df593c7e7
commit 99c5aa0d5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -742,12 +742,18 @@ static void replaceTab(YTIGuideResponse *response) {
// Hide the Download Button under the Video Player - @arichorn
if ((IsEnabled(@"hideAddToOfflineButton_enabled")) && ([self.accessibilityIdentifier isEqualToString:@"id.ui.add_to_offline.button"])) {
self.hidden = YES;
self.userInteractionEnabled = NO;
[self setNeedsLayout];
[self layoutIfNeeded];
}
// Hide the Comment Section under the Video Player - @arichorn
if ((IsEnabled(@"hideCommentSection_enabled")) && ([self.accessibilityIdentifier isEqualToString:@"id.ui.comments_entry_point_teaser"] || [self.accessibilityIdentifier isEqualToString:@"id.ui.comments_entry_point_simplebox"] || [self.accessibilityIdentifier isEqualToString:@"id.ui.video_metadata_carousel"] || [self.accessibilityIdentifier isEqualToString:@"id.ui.carousel_header"])) {
self.hidden = YES;
self.opaque = YES;
self.userInteractionEnabled = NO;
[self setNeedsLayout];
[self layoutIfNeeded];
}
}
%end