From ab43d849513575d14511ff4a56797c10eba78aff Mon Sep 17 00:00:00 2001 From: arichornlover <78001398+arichorn@users.noreply.github.com> Date: Sun, 26 Nov 2023 10:37:15 -0600 Subject: [PATCH] Bring back the old color for Buffer Bar This is what the Buffer Bar color originally was in v16.xx.x YouTube. --- uYouPlus.xm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uYouPlus.xm b/uYouPlus.xm index ae91b8d..5d44257 100644 --- a/uYouPlus.xm +++ b/uYouPlus.xm @@ -623,7 +623,7 @@ int main(int argc, char * argv[]) { %hook YTSegmentableInlinePlayerBarView // Gray Buffer Progress - YTNoModernUI - (void)setBufferedProgressBarColor:(id)arg1 { - [UIColor colorWithRed:1.00 green:1.00 blue:1.00 alpha:0.90]; + [UIColor colorWithRed:1.00 green:1.00 blue:1.00 alpha:0.50]; } %end @@ -991,7 +991,7 @@ static void replaceTab(YTIGuideResponse *response) { %hook YTSegmentableInlinePlayerBarView - (void)setBufferedProgressBarColor:(id)arg1 { - [UIColor colorWithRed:1.00 green:1.00 blue:1.00 alpha:0.90]; + [UIColor colorWithRed:1.00 green:1.00 blue:1.00 alpha:0.50]; } %end %end