The source code for the tweak that automatically solves your OCD!
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
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
|