Skip to content

Commit

Permalink
uncommented lostfocus log
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Oct 5, 2024
1 parent d0fc5fd commit f3d581f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Mirivoice/Mirivoice.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Label="Avalonia">
<AvaloniaXamlReportImportance>Low</AvaloniaXamlReportImportance>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Mirivoice/Views/SingleLineEditorView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private async void LineTextChanging(object sender, TextChangingEventArgs e)
private void LineLostFocus(object sender, RoutedEventArgs e)
{
l.viewModel.LineText = viewModel.mTextBoxEditor.CurrentScript;
//Log.Debug("SingleLineTBox Lost Focus");
Log.Information("SingleLineTBox Lost Focus");
if (l.lastPhonemizedText != l.viewModel.LineText)
{
l.DeActivatePhonemizer = false;
Expand Down

0 comments on commit f3d581f

Please sign in to comment.