From 562456837e654766d8c4a4c235cb918e54eb9bef Mon Sep 17 00:00:00 2001 From: Beingpax Date: Mon, 26 May 2025 18:46:18 +0545 Subject: [PATCH] change screen capture to context awareness --- VoiceInk/PowerMode/PowerModeConfigView.swift | 2 +- VoiceInk/Views/EnhancementSettingsView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VoiceInk/PowerMode/PowerModeConfigView.swift b/VoiceInk/PowerMode/PowerModeConfigView.swift index 584af99..968b641 100644 --- a/VoiceInk/PowerMode/PowerModeConfigView.swift +++ b/VoiceInk/PowerMode/PowerModeConfigView.swift @@ -601,7 +601,7 @@ struct ConfigurationView: View { Divider() - // Add Screen Capture toggle + Toggle("Context Awareness", isOn: $useScreenCapture) .frame(maxWidth: .infinity, alignment: .leading) diff --git a/VoiceInk/Views/EnhancementSettingsView.swift b/VoiceInk/Views/EnhancementSettingsView.swift index 73a334b..974c1f6 100644 --- a/VoiceInk/Views/EnhancementSettingsView.swift +++ b/VoiceInk/Views/EnhancementSettingsView.swift @@ -175,7 +175,7 @@ struct EnhancementSettingsView: View { } VStack(alignment: .leading, spacing: 4) { - Toggle("Screen Capture", isOn: $enhancementService.useScreenCaptureContext) + Toggle("Context Awareness", isOn: $enhancementService.useScreenCaptureContext) .toggleStyle(.switch) .disabled(!enhancementService.isEnhancementEnabled) Text("Learn what is on the screen to understand the context")