diff --git a/AltStore/Views/App Detail/AppPermissionsGrid.swift b/AltStore/Views/App Detail/AppPermissionsGrid.swift index d8d05581..31bd53c7 100644 --- a/AltStore/Views/App Detail/AppPermissionsGrid.swift +++ b/AltStore/Views/App Detail/AppPermissionsGrid.swift @@ -35,7 +35,8 @@ struct AppPermissionGridItemView: View { self.isPopoverPresented = true } label: { VStack { - Image(uiImage: permission.type.icon ?? UIImage(systemSymbol: .questionmark)) + Image(uiImage: permission.type.icon?.withRenderingMode(.alwaysTemplate) ?? UIImage(systemSymbol: .questionmark)) + .foregroundColor(.primary) .padding() .background(Circle().foregroundColor(Color(.secondarySystemBackground))) Text(permission.type.localizedShortName ?? permission.type.localizedName ?? "")