14 lines
No EOL
176 B
Text
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 |