The source code for the tweak that automatically solves your OCD!
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //ios 13
- %hook SBHFolderSettings
- -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
- %orig(YES);
- }
- %end
- //ios 12 and lower
- %hook SBFolderSettings
- -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
- %orig(YES);
- }
- %end
|