This commit is contained in:
arichornlover 2024-03-10 23:39:22 -05:00 committed by GitHub
parent 90fe72bded
commit 30a6fdb6fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -570,6 +570,16 @@ static NSString *accessGroupID() {
}
%end
// Hide double tap to seek overlay - @arichornlover
%hook YTInlinePlayerDoubleTapIndicatorView
- (CGFloat)circleRadius {
if IS_ENABLED(@"hideDoubleTapToSeekOverlay_enabled") {
return 0;
}
return %orig;
}
%end
// Video Controls Overlay Options
// Hide CC / Hide Autoplay switch / Hide YTMusic Button / Enable Share Button / Enable Save to Playlist Button
%hook YTMainAppControlsOverlayView