From 66eb0e5e9529049b5da2b76d0918c8a8b3b95fb0 Mon Sep 17 00:00:00 2001 From: Xjph Date: Sat, 23 Oct 2021 12:34:48 -0230 Subject: [PATCH] use basic ssml in speech test button to ensure normal functionality --- ObservatoryCore/UI/Views/BasicUIView.axaml.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs index b23164f..e1d2e3d 100644 --- a/ObservatoryCore/UI/Views/BasicUIView.axaml.cs +++ b/ObservatoryCore/UI/Views/BasicUIView.axaml.cs @@ -530,7 +530,12 @@ namespace Observatory.UI.Views "Move the vat over the hot fire." }; - NotificationArgs args = new() { Title = "Speech Synthesis Test", Detail = harvardSentences.OrderBy(s => new Random().NextDouble()).First() }; + NotificationArgs args = new() + { + Title = "Speech Synthesis Test", + TitleSsml = "Speech Synthesis Test", + Detail = harvardSentences.OrderBy(s => new Random().NextDouble()).First() + }; new NativeNotification.NativeVoice().EnqueueAndAnnounce(args);