Fix “Use stock iOS volume HUD” Boolean

Google keeps changing things and has actually been affecting some of uYouEnhanced Options.
for example:
Fake Premium (reason: the class it used was renamed)
Use stock iOS volume HUD (reason: Google had recently set it to YES by default. So I did changes to make sure it’s set to NO when not used in uYouEnhanced.)
Red progress bar (reason: it has been changed again by Google by adding a GRADIENT_OVERLAY that I gotta fix soon.)
This commit is contained in:
aricloverGitHub (INACTIVE) 2024-12-06 20:40:35 -06:00 committed by GitHub
parent cb78b20b6b
commit a3d06764ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1088,7 +1088,7 @@ static int contrastMode() {
%group gStockVolumeHUD
%hook YTColdConfig
- (BOOL)iosUseSystemVolumeControlInFullscreen {
return IS_ENABLED(kStockVolumeHUD) ? YES : %orig;
return IS_ENABLED(kStockVolumeHUD) ? YES : NO;
}
%end
%hook UIApplication