Limits “Change App Icon” option to BETA builds for now

This commit is contained in:
Riley Testut
2020-10-05 13:59:44 -07:00
parent 5000b43533
commit c8b4ce8d38

View File

@@ -1568,7 +1568,11 @@ extension MyAppsViewController
let changeIconMenu = UIMenu(title: NSLocalizedString("Change Icon", comment: ""), image: UIImage(systemName: "photo"), children: changeIconActions)
guard installedApp.bundleIdentifier != StoreApp.altstoreAppID else {
#if BETA
return [refreshAction, changeIconMenu]
#else
return [refreshAction]
#endif
}
if installedApp.isActive
@@ -1580,7 +1584,9 @@ extension MyAppsViewController
actions.append(activateAction)
}
#if BETA
actions.append(changeIconMenu)
#endif
if installedApp.isActive
{