Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Razmoth committed Nov 15, 2023
1 parent cd851e4 commit f6ca41e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Audio/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ private void GenerateTXTPInternal(string wwiser, string file)
startInfo.ArgumentList.Add(folder.Name);
startInfo.ArgumentList.Add("-go");
startInfo.ArgumentList.Add(txtpDir);
startInfo.WorkingDirectory = AppDomain.CurrentDomain.BaseDirectory;
startInfo.UseShellExecute = true;
using var process = Process.Start(startInfo);
process.WaitForExit();
Expand All @@ -432,6 +433,7 @@ private void GenerateTXTPInternal(string wwiser, string file)
startInfo.ArgumentList.Add("-te");
startInfo.ArgumentList.Add("-nl");
startInfo.ArgumentList.Add(file);
startInfo.WorkingDirectory = AppDomain.CurrentDomain.BaseDirectory;
startInfo.UseShellExecute = true;
using var process = Process.Start(startInfo);
process.WaitForExit();
Expand Down

0 comments on commit f6ca41e

Please sign in to comment.