From 1d4095011840bc69554defece0b57a4856c9f7eb Mon Sep 17 00:00:00 2001 From: jack Date: Thu, 25 Sep 2025 12:30:55 +0200 Subject: [PATCH] Lowercase image preview buttons --- bitchat/Views/ContentView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitchat/Views/ContentView.swift b/bitchat/Views/ContentView.swift index c60c0b74..a5669bc2 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -2272,7 +2272,7 @@ struct ImagePreviewView: View { Spacer() HStack { Button(action: { dismiss() }) { - Text("Close") + Text("close") .font(.bitchatSystem(size: 15, weight: .semibold)) .foregroundColor(.white) .padding(.horizontal, 16) @@ -2281,7 +2281,7 @@ struct ImagePreviewView: View { } Spacer() Button(action: saveCopy) { - Text("Save") + Text("save") .font(.bitchatSystem(size: 15, weight: .semibold)) .foregroundColor(.white) .padding(.horizontal, 16)