uYouEnhanced/Sources/YTStockVolumeHUD.xm
Foxster d24b4392b0 Major refactor: split codebase into multiple files
Now for the fun part: will this compile?
2023-12-25 00:27:46 -08:00

21 lines
No EOL
396 B
Text

#import "uYouPlus.h"
%group YTStockVolumeHUD // https://github.com/lilacvibes/YTStockVolumeHUD
%hook YTVolumeBarView
- (void)volumeChanged:(id)arg1 {
%orig(nil);
}
%end
%hook UIApplication
- (void)setSystemVolumeHUDEnabled:(BOOL)arg1 forAudioCategory:(id)arg2 {
%orig(true, arg2);
}
%end
%end
%ctor {
if (IS_ENABLED(@"stockVolumeHUD_enabled")) {
%init(YTStockVolumeHUD);
}
}