mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-20 10:52:07 +00:00
Improved Hide Indicators Option
This commit is contained in:
parent
1064ed1852
commit
a85086f4f0
1 changed files with 5 additions and 3 deletions
|
|
@ -1277,9 +1277,11 @@ static BOOL findCell(ASNodeController *nodeController, NSArray <NSString *> *ide
|
|||
}
|
||||
%end
|
||||
%hook YTCountView
|
||||
- (void)removeFromSuperview {
|
||||
[self setHidden:YES];
|
||||
%orig();
|
||||
- (void)setHidden:(BOOL)hidden {
|
||||
%orig(hidden);
|
||||
if (hidden) {
|
||||
[self setBackgroundColor:[UIColor clearColor]];
|
||||
}
|
||||
}
|
||||
%end
|
||||
%end
|
||||
|
|
|
|||
Loading…
Reference in a new issue