From 2484a920703f820b2b84d68e831749303da2356c Mon Sep 17 00:00:00 2001 From: Beingpax Date: Mon, 26 May 2025 14:46:40 +0545 Subject: [PATCH] Fix confusing auto-copy settings display - only show 'Copied to clipboard' when auto-copy is enabled --- VoiceInk/Views/RecordView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/VoiceInk/Views/RecordView.swift b/VoiceInk/Views/RecordView.swift index 8e0cd8d..a4a7412 100644 --- a/VoiceInk/Views/RecordView.swift +++ b/VoiceInk/Views/RecordView.swift @@ -228,7 +228,9 @@ struct RecordView: View { .font(.headline) VStack(alignment: .leading, spacing: 12) { - InfoRow(icon: "doc.on.clipboard", text: "Copied to clipboard") + if whisperState.isAutoCopyEnabled { + InfoRow(icon: "doc.on.clipboard", text: "Copied to clipboard") + } InfoRow(icon: "text.cursor", text: "Pasted at cursor position") } }