This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
UnderTime/i8corners/Tweak.xm
2018-05-07 00:25:07 -06:00

14 lines
No EOL
176 B
Text

#import "Bits.h"
%hook UIWindow
-(void) layoutSubviews {
%orig;
int radius = GetPrefInt(@"cRadius");
if(GetPrefBool(@"Enable")) {
self.layer.cornerRadius = radius;
}
}
%end