From e1c6bf40e8b430f760371a07b88e3e08cebb26dc Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Tue, 30 Jun 2026 20:54:10 +0800 Subject: [PATCH] lcpp ui mic off by default --- tools/ui/src/lib/constants/settings-registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ui/src/lib/constants/settings-registry.ts b/tools/ui/src/lib/constants/settings-registry.ts index 7bd8aa858..d059c3813 100644 --- a/tools/ui/src/lib/constants/settings-registry.ts +++ b/tools/ui/src/lib/constants/settings-registry.ts @@ -261,7 +261,7 @@ const SETTINGS_REGISTRY: Record = { key: SETTINGS_KEYS.AUTO_MIC_ON_EMPTY, label: 'Show microphone on empty input', help: 'Automatically show microphone button instead of send button when textarea is empty for models with audio modality support.', - defaultValue: true, + defaultValue: false, type: SettingsFieldType.CHECKBOX, section: SETTINGS_SECTION_SLUGS.DISPLAY, isExperimental: true,