From 3541f5e8faaee1cb646b8f1160b1d8c9c7c3b64e Mon Sep 17 00:00:00 2001 From: LXBStudioLLC Date: Sun, 5 Jul 2026 15:26:51 -0400 Subject: [PATCH] fix(ui): SizeDisplay binding must be OneWay (read-only property) LLMSettingsView.xaml bound Run.Text to SizeDisplay with the default TwoWay mode. SizeDisplay is a read-only computed property (getter only), so WPF threw XamlParseException at template instantiation time, crashing the entire LLM provider card list whenever models were present. Adding Mode=OneWay tells WPF to only read source -> target, which is valid for read-only properties. --- src/Envoy.UI/LLMSettingsView.xaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Envoy.UI/LLMSettingsView.xaml b/src/Envoy.UI/LLMSettingsView.xaml index f4d5940..30c7bcf 100644 --- a/src/Envoy.UI/LLMSettingsView.xaml +++ b/src/Envoy.UI/LLMSettingsView.xaml @@ -92,7 +92,7 @@ - +