mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-01-11 22:40:19 +00:00
New Option Hide double tap to seek overlay - https://github.com/arichornlover/uYouEnhanced/issues/351
This commit is contained in:
parent
90fe72bded
commit
30a6fdb6fc
1 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue