Remove auto launch soft close

This commit is contained in:
Natsumi
2026-01-26 20:28:34 +13:00
parent 7a4014f846
commit 397dacc51a
3 changed files with 6 additions and 8 deletions

View File

@@ -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();
}

View File

@@ -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) => {

View File

@@ -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;