Make read receipt indicator more prominent

- Changed from double checkmarks to checkmark.circle.fill icon
- Made the icon larger (size 12) and bold
- Used explicit RGB blue color (0.0, 0.478, 1.0)
- This should make it very obvious when a message has been read
This commit is contained in:
jack
2025-07-06 22:33:19 +02:00
parent 1fec1ee315
commit c72c4949ff
+3 -5
View File
@@ -1111,12 +1111,10 @@ struct DeliveryStatusView: View {
case .read(let nickname, _): case .read(let nickname, _):
HStack(spacing: -2) { HStack(spacing: -2) {
Image(systemName: "checkmark") Image(systemName: "checkmark.circle.fill")
.font(.system(size: 10)) .font(.system(size: 12, weight: .bold))
Image(systemName: "checkmark") .foregroundColor(Color(red: 0.0, green: 0.478, blue: 1.0)) // Bright blue
.font(.system(size: 10))
} }
.foregroundColor(Color.blue)
.help("Read by \(nickname)") .help("Read by \(nickname)")
.onAppear { .onAppear {
print("[UI] Showing BLUE checkmarks for read status by \(nickname)") print("[UI] Showing BLUE checkmarks for read status by \(nickname)")