Changed option
This commit is contained in:
parent
604f36f9a1
commit
2f85e6031c
1 changed files with 6 additions and 1 deletions
|
|
@ -1194,7 +1194,12 @@ UIColor* raisedColor = [UIColor colorWithRed:0.035 green:0.035 blue:0.035 alpha:
|
|||
%group gHideSubscriptionsNotificationBadge
|
||||
%hook YTPivotBarIndicatorView
|
||||
- (void)setHidden:(BOOL)hidden {
|
||||
%orig(YES);
|
||||
if (hidden) {
|
||||
self.alpha = 0.0;
|
||||
} else {
|
||||
self.hidden = 1;
|
||||
}
|
||||
%orig(hidden);
|
||||
}
|
||||
%end
|
||||
%end
|
||||
|
|
|
|||
Loading…
Reference in a new issue