Remove screen fading effect

This commit is contained in:
Bryce Hackel 2024-05-02 13:38:36 -07:00
parent 9c12fe2005
commit 0916c7d5d7
No known key found for this signature in database
GPG key ID: F031960F08455E88

View file

@ -810,6 +810,12 @@ BOOL isAd(YTIElementRenderer *self) {
- (CABasicAnimation *)laterBackgroundcolorAnimation {
return [self uYouEnhancedGetBlankColorAnimation];
}
- (void)layoutSubviews {
%orig;
// Set the 0th subview (which darkens the screen) to hidden
self.subviews[0].hidden = YES;
}
%end
%end