Skip to content

Commit

Permalink
Don't kill auto started apps when closing VRCX
Browse files Browse the repository at this point in the history
  • Loading branch information
Natsumi-sama committed Sep 7, 2023
1 parent 5330b30 commit 180a4cd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions AutoAppLaunchManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ internal bool IsChildProcessRunning(string path)

internal void Init()
{
// What are you lookin at?
// What are you lookin at? :eyes:
}

internal void Exit()
Expand All @@ -274,8 +274,9 @@ internal void Exit()

Enabled = false;

lock (startedProcesses)
KillChildProcesses();
// people thought this behavior was a bug
// lock (startedProcesses)
// KillChildProcesses();
}

private void ChildUpdateTimer_Elapsed(object sender, ElapsedEventArgs e)
Expand Down

0 comments on commit 180a4cd

Please sign in to comment.