mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-19 01:32:06 +00:00
Updated Hide Heatwaves Bar Option
This commit is contained in:
parent
c8ebf37cd6
commit
9eefece9d1
1 changed files with 11 additions and 1 deletions
|
|
@ -736,11 +736,21 @@ static int contrastMode() {
|
|||
%end
|
||||
%end
|
||||
|
||||
// Hide YouTube Heatwaves in Video Player (YouTube v17.19.2-latest) - @level3tjg - https://www.reddit.com/r/jailbreak/comments/v29yvk/
|
||||
// Hide YouTube Heatwaves in Video Player - v17.33.2+ - @arichornlover
|
||||
%group gHideHeatwaves
|
||||
%hook YTInlinePlayerBarContainerView
|
||||
- (BOOL)canShowHeatwave { return NO; }
|
||||
%end
|
||||
%hook YTPlayerBarHeatwaveView
|
||||
- (id)initWithFrame:(CGRect)frame heatmap:(id)heat {
|
||||
return NULL;
|
||||
}
|
||||
%end
|
||||
%hook YTPlayerBarController
|
||||
- (void)setHeatmap:(id)arg1 {
|
||||
%orig(NULL);
|
||||
}
|
||||
%end
|
||||
%end
|
||||
|
||||
// YTNoSuggestedVideo - https://github.com/bhackel/YTNoSuggestedVideo
|
||||
|
|
|
|||
Loading…
Reference in a new issue