Skip to content

Commit

Permalink
Fixed crashing when loading project
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Oct 5, 2024
1 parent 820ab88 commit c7391b6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Mirivoice/Views/SingleLineEditorView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ public SingleLineEditorView(LineBoxView l, bool FirstUpdate = true)

private async void LineTextChanging(object sender, TextChangingEventArgs e)
{

if (l is null)
{
Log.Warning("LineBoxView is null.");
return;
}
l.DeActivatePhonemizer = false;
if (FirstUpdate)
{
Expand Down

0 comments on commit c7391b6

Please sign in to comment.