mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-01-11 22:40:19 +00:00
This release also includes all of the new changes from qnblackcat/uYouPlus. and the App Version Spoofer has finally been updated again!
10 lines
224 B
Text
10 lines
224 B
Text
#import "uYouPlus.h"
|
|
|
|
// YTNoHoverCards: https://github.com/level3tjg/YTNoHoverCards
|
|
%hook YTCreatorEndscreenView
|
|
- (void)setHidden:(BOOL)hidden {
|
|
if (IS_ENABLED(kHideHoverCards))
|
|
hidden = YES;
|
|
%orig;
|
|
}
|
|
%end
|