mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Remove auto launch soft close
This commit is contained in:
@@ -216,11 +216,12 @@ namespace VRCX
|
|||||||
if (proc.HasExited)
|
if (proc.HasExited)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (proc.CloseMainWindow())
|
// breaks some apps
|
||||||
continue;
|
// if (proc.CloseMainWindow())
|
||||||
|
// continue;
|
||||||
if (proc.WaitForExit(1000))
|
//
|
||||||
continue;
|
// if (proc.WaitForExit(1000))
|
||||||
|
// continue;
|
||||||
|
|
||||||
proc.Kill();
|
proc.Kill();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -772,7 +772,6 @@ export const useUserStore = defineStore('User', () => {
|
|||||||
const D = userDialog.value;
|
const D = userDialog.value;
|
||||||
D.visible = true;
|
D.visible = true;
|
||||||
D.id = userId;
|
D.id = userId;
|
||||||
D.treeData = {};
|
|
||||||
D.memo = '';
|
D.memo = '';
|
||||||
D.note = '';
|
D.note = '';
|
||||||
getUserMemo(userId).then((memo) => {
|
getUserMemo(userId).then((memo) => {
|
||||||
|
|||||||
@@ -46,7 +46,6 @@ export const useWorldStore = defineStore('World', () => {
|
|||||||
avatarScalingDisabled: false,
|
avatarScalingDisabled: false,
|
||||||
focusViewDisabled: false,
|
focusViewDisabled: false,
|
||||||
rooms: [],
|
rooms: [],
|
||||||
treeData: {},
|
|
||||||
bundleSizes: {},
|
bundleSizes: {},
|
||||||
lastUpdated: '',
|
lastUpdated: '',
|
||||||
inCache: false,
|
inCache: false,
|
||||||
@@ -94,7 +93,6 @@ export const useWorldStore = defineStore('World', () => {
|
|||||||
L.shortName = shortName;
|
L.shortName = shortName;
|
||||||
D.id = L.worldId;
|
D.id = L.worldId;
|
||||||
D.$location = L;
|
D.$location = L;
|
||||||
D.treeData = {};
|
|
||||||
D.bundleSizes = {};
|
D.bundleSizes = {};
|
||||||
D.lastUpdated = '';
|
D.lastUpdated = '';
|
||||||
D.loading = true;
|
D.loading = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user