From 397dacc51a4a76fcc4cbb0ad2accd251fcae7d44 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Mon, 26 Jan 2026 20:28:34 +1300 Subject: [PATCH] Remove auto launch soft close --- Dotnet/AutoAppLaunchManager.cs | 11 ++++++----- src/stores/user.js | 1 - src/stores/world.js | 2 -- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Dotnet/AutoAppLaunchManager.cs b/Dotnet/AutoAppLaunchManager.cs index dc2d2bc4..e1a3e3e9 100644 --- a/Dotnet/AutoAppLaunchManager.cs +++ b/Dotnet/AutoAppLaunchManager.cs @@ -216,11 +216,12 @@ namespace VRCX if (proc.HasExited) continue; - if (proc.CloseMainWindow()) - continue; - - if (proc.WaitForExit(1000)) - continue; + // breaks some apps + // if (proc.CloseMainWindow()) + // continue; + // + // if (proc.WaitForExit(1000)) + // continue; proc.Kill(); } diff --git a/src/stores/user.js b/src/stores/user.js index b82ff808..2e79ad1a 100644 --- a/src/stores/user.js +++ b/src/stores/user.js @@ -772,7 +772,6 @@ export const useUserStore = defineStore('User', () => { const D = userDialog.value; D.visible = true; D.id = userId; - D.treeData = {}; D.memo = ''; D.note = ''; getUserMemo(userId).then((memo) => { diff --git a/src/stores/world.js b/src/stores/world.js index 1bdb3253..cb718185 100644 --- a/src/stores/world.js +++ b/src/stores/world.js @@ -46,7 +46,6 @@ export const useWorldStore = defineStore('World', () => { avatarScalingDisabled: false, focusViewDisabled: false, rooms: [], - treeData: {}, bundleSizes: {}, lastUpdated: '', inCache: false, @@ -94,7 +93,6 @@ export const useWorldStore = defineStore('World', () => { L.shortName = shortName; D.id = L.worldId; D.$location = L; - D.treeData = {}; D.bundleSizes = {}; D.lastUpdated = ''; D.loading = true;