UI: switch to 'point.3.filled.connected.trianglepath.dotted' for mesh-reachable icons in list and header

This commit is contained in:
jack
2025-08-26 02:40:40 +02:00
parent fc690fc0ac
commit 1913719662
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1247,8 +1247,8 @@ struct ContentView: View {
.foregroundColor(textColor)
.accessibilityLabel("Connected via mesh")
case .meshReachable:
// point.3 icon for reachable via mesh (not directly connected)
Image(systemName: "point.3.connected.trianglepath.dotted")
// point.3 filled icon for reachable via mesh (not directly connected)
Image(systemName: "point.3.filled.connected.trianglepath.dotted")
.font(.system(size: 14))
.foregroundColor(textColor)
.accessibilityLabel("Reachable via mesh")
+1 -1
View File
@@ -54,7 +54,7 @@ struct MeshPeerList: View {
.foregroundColor(baseColor)
} else if peer.isReachable {
// Mesh-reachable (relayed): point.3 icon
Image(systemName: "point.3.connected.trianglepath.dotted")
Image(systemName: "point.3.filled.connected.trianglepath.dotted")
.font(.system(size: 10))
.foregroundColor(baseColor)
} else if peer.isMutualFavorite {