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);