添加回正开关,默认开启

This commit is contained in:
目棃
2024-08-11 17:36:29 +08:00
parent 1f814bc8b5
commit fc43dd9820
7 changed files with 549 additions and 526 deletions

View File

@@ -52,7 +52,8 @@ onBeforeMount(async () => {
await core.invoke("init_app");
urlListener = await getDeepLink();
}
await checkResize();
if (appStore.needResize === undefined) appStore.needResize = true;
if (appStore.needResize) await checkResize();
await win.show();
});