From d95d25742f701c7b482fc2461116fcf454de7f50 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Thu, 7 Sep 2023 16:44:59 +1200 Subject: [PATCH] Don't kill auto started apps when closing VRCX --- AutoAppLaunchManager.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/AutoAppLaunchManager.cs b/AutoAppLaunchManager.cs index 1c098143..fe7abdf0 100644 --- a/AutoAppLaunchManager.cs +++ b/AutoAppLaunchManager.cs @@ -265,7 +265,7 @@ namespace VRCX internal void Init() { - // What are you lookin at? + // What are you lookin at? :eyes: } internal void Exit() @@ -274,8 +274,9 @@ namespace VRCX Enabled = false; - lock (startedProcesses) - KillChildProcesses(); + // people thought this behavior was a bug + // lock (startedProcesses) + // KillChildProcesses(); } private void ChildUpdateTimer_Elapsed(object sender, ElapsedEventArgs e)