enmity-mod / tweak

🔧 iOS jailbreak tweak to handle bundle loading and native functionality for Enmity.
318 stars 42 forks source link

Fix BUNDLE_PATH and horrible lag when using themes with Image BGs #22

Closed acquitelol closed 1 year ago

acquitelol commented 1 year ago

Original:

UIView *subview = self.subviews[[self.subviews count] >= 3 ? [self.subviews count] - 3 : 0];

New:

int count = [self.subviews count];
UIView *subview = self.subviews[(count >= 3 && count <= 5) ? 2 : 0];