From c72c4949ffe382e766d840253a4a62511f7fb8d8 Mon Sep 17 00:00:00 2001 From: jack Date: Sun, 6 Jul 2025 22:33:19 +0200 Subject: [PATCH] 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 --- bitchat/Views/ContentView.swift | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/bitchat/Views/ContentView.swift b/bitchat/Views/ContentView.swift index 03f2fdaf..4af2b7fe 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -1111,12 +1111,10 @@ struct DeliveryStatusView: View { case .read(let nickname, _): HStack(spacing: -2) { - Image(systemName: "checkmark") - .font(.system(size: 10)) - Image(systemName: "checkmark") - .font(.system(size: 10)) + Image(systemName: "checkmark.circle.fill") + .font(.system(size: 12, weight: .bold)) + .foregroundColor(Color(red: 0.0, green: 0.478, blue: 1.0)) // Bright blue } - .foregroundColor(Color.blue) .help("Read by \(nickname)") .onAppear { print("[UI] Showing BLUE checkmarks for read status by \(nickname)")