2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

prevent exception when testing with no voice

This commit is contained in:
Xjph 2021-09-13 09:48:16 -02:30
parent b18f57b16f
commit 289df0751a

View File

@ -23,7 +23,6 @@ namespace Observatory.UI.Views
public BasicUIView() public BasicUIView()
{ {
Initialized += OnInitialized;
InitializeComponent(); InitializeComponent();
} }
@ -65,15 +64,11 @@ namespace Observatory.UI.Views
e.Column.CanUserSort = true; e.Column.CanUserSort = true;
} }
private void OnInitialized(object sender, System.EventArgs e)
{
}
private void UITypeChange() private void UITypeChange()
{ {
var uiPanel = this.Find<Panel>("UIPanel"); var uiPanel = this.Find<Panel>("UIPanel");
dataGrid = null; dataGrid = null;
switch (UIType) switch (UIType)
{ {
case PluginUI.UIType.None: case PluginUI.UIType.None:
@ -442,7 +437,7 @@ namespace Observatory.UI.Views
voiceTestButton.Click += (object sender, RoutedEventArgs e) => voiceTestButton.Click += (object sender, RoutedEventArgs e) =>
{ {
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && Properties.Core.Default.VoiceSelected.Length > 0)
{ {
var speech = new System.Speech.Synthesis.SpeechSynthesizer() var speech = new System.Speech.Synthesis.SpeechSynthesizer()
{ {
@ -466,7 +461,6 @@ namespace Observatory.UI.Views
}; };
speech.SpeakAsync("Speech Synthesis Test: " + harvardSentences.OrderBy(s => new Random().NextDouble()).First()); speech.SpeakAsync("Speech Synthesis Test: " + harvardSentences.OrderBy(s => new Random().NextDouble()).First());
} }
}; };