Fix Remove Indicators option

Option wasn’t building correctly.
This commit is contained in:
arichornlover 2023-11-18 18:11:58 -06:00 committed by GitHub
parent efe8503241
commit a0343b34b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1395,18 +1395,10 @@ static void replaceTab(YTIGuideResponse *response) {
%orig();
}
- (void)setFillColor:(id)arg1 {
if (kRemoveIndicators) {
%orig([UIColor clearColor]);
} else {
%orig(arg1);
}
%orig([UIColor clearColor]);
}
- (void)setBorderColor:(id)arg1 {
if (kRemoveIndicators) {
%orig([UIColor clearColor]);
} else {
%orig(arg1);
}
%orig([UIColor clearColor]);
}
%end
%end