The source code for the tweak that automatically solves your OCD!
Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
123456789101112 |
- //ios 13
- %hook SBHFolderSettings
- -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
- %orig(YES);
- }
- %end
- //ios 12 and lower
- %hook SBFolderSettings
- -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
- %orig(YES);
- }
- %end
|