From a89fd153ee9c743b4f06b9242db789b54a2405eb 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 3cac1767..1617e19d 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -2215,7 +2215,7 @@ struct ImagePreviewView: View { Spacer() HStack { Button(action: { dismiss() }) { - Text("Close") + Text("close") .font(.bitchatSystem(size: 15, weight: .semibold)) .foregroundColor(.white) .padding(.horizontal, 16) @@ -2224,7 +2224,7 @@ struct ImagePreviewView: View { } Spacer() Button(action: saveCopy) { - Text("Save") + Text("save") .font(.bitchatSystem(size: 15, weight: .semibold)) .foregroundColor(.white) .padding(.horizontal, 16)