mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-01-11 22:40:19 +00:00
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:
parent
cb78b20b6b
commit
a3d06764ed
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue