diff --git a/YTLitePlus.xm b/YTLitePlus.xm index 3bb632e..a857011 100644 --- a/YTLitePlus.xm +++ b/YTLitePlus.xm @@ -1034,10 +1034,10 @@ NSInteger pageStyle = 0; self.videoPlayerButton.frame = CGRectMake(0, 0, 40, 40); if ([%c(YTPageStyleController) pageStyle]) { //dark mode - [self.videoPlayerButton setImage:[UIImage imageWithContentsOfFile:[tweakBundle pathForResource:@"YTLitePlusColored-1024" ofType:@"png"]] forState:UIControlStateNormal]; + [self.videoPlayerButton setImage:[UIImage imageWithContentsOfFile:[tweakBundle pathForResource:@"YTLitePlusColored-128" ofType:@"png"]] forState:UIControlStateNormal]; } else { // light mode - UIImage *image = [UIImage imageWithContentsOfFile:[tweakBundle pathForResource:@"YTLitePlusColored-1024" ofType:@"png"]]; + UIImage *image = [UIImage imageWithContentsOfFile:[tweakBundle pathForResource:@"YTLitePlusColored-128" ofType:@"png"]]; image = [image imageWithTintColor:UIColor.blackColor renderingMode:UIImageRenderingModeAlwaysTemplate]; [self.videoPlayerButton setImage:image forState:UIControlStateNormal]; [self.videoPlayerButton setTintColor:UIColor.blackColor]; @@ -1322,9 +1322,6 @@ NSInteger pageStyle = 0; if (![allKeys containsObject:@"fixCasting_enabled"]) { [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"fixCasting_enabled"]; } - if (![allKeys containsObject:@"videoPlayerButton_enabled"]) { - [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"videoPlayerButton_enabled"]; - } // Default gestures as volume, brightness, seek if (![allKeys containsObject:@"playerGestureTopSelection"]) { [[NSUserDefaults standardUserDefaults] setInteger:GestureModeVolume forKey:@"playerGestureTopSelection"]; diff --git a/lang/YTLitePlus.bundle/YTLitePlusColored-128.png b/lang/YTLitePlus.bundle/YTLitePlusColored-128.png new file mode 100644 index 0000000..de19892 Binary files /dev/null and b/lang/YTLitePlus.bundle/YTLitePlusColored-128.png differ