Fix App Icon Sizes (AppIconOptionsController Menu)

Adjusted so they don’t look like they are stuck together in the menu. thanks to therealFoxster for the suggestion!
This commit is contained in:
arichornlover 2024-04-21 12:28:30 -05:00 committed by GitHub
parent cabb3aa95f
commit ac23d57bda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,9 @@
cell.imageView.image = iconImage;
cell.imageView.layer.cornerRadius = 10.0;
cell.imageView.clipsToBounds = YES;
cell.imageView.frame = CGRectMake(10, 10, 40, 40);
cell.textLabel.frame = CGRectMake(60, 10, self.view.frame.size.width - 70, 40);
if (indexPath.row == self.selectedIconIndex) {
cell.accessoryType = UITableViewCellAccessoryCheckmark;
} else {