From 180a4cdcbb89ff5dc3593bcbd77cb625a0d7d266 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 1c0981431..fe7abdf06 100644 --- a/AutoAppLaunchManager.cs +++ b/AutoAppLaunchManager.cs @@ -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() @@ -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)