mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-03-11 17:15:32 +00:00
Fix Old Dark Theme (video player)
Fix Video Player showing the wrong color for some reason when Old Dark Mode is active.
This commit is contained in:
parent
00585c7912
commit
e7b460b09d
1 changed files with 7 additions and 0 deletions
|
|
@ -81,6 +81,13 @@
|
|||
self.subviews[0].backgroundColor = [UIColor clearColor];
|
||||
}
|
||||
%end
|
||||
|
||||
%hook YTAsyncCollectionView
|
||||
- (void)didMoveToWindow {
|
||||
%orig;
|
||||
self.backgroundColor = [UIColor colorWithRed:0.129 green:0.129 blue:0.129 alpha:1.0];
|
||||
}
|
||||
%end
|
||||
%end
|
||||
|
||||
# pragma mark - OLED dark mode by BandarHL
|
||||
|
|
|
|||
Loading…
Reference in a new issue