The source code for the tweak that automatically solves your OCD!
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

13 lines
213B

  1. //ios 13
  2. %hook SBHFolderSettings
  3. -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
  4. %orig(YES);
  5. }
  6. %end
  7. //ios 12 and lower
  8. %hook SBFolderSettings
  9. -(void)setSortsIconsAlphabetically:(BOOL)arg1 {
  10. %orig(YES);
  11. }
  12. %end