Vanessa 2023-01-17 01:28:58 +08:00
parent 73cb6a2112
commit c7809a7403

View file

@ -301,11 +301,14 @@ export const JSONToLayout = (isStart: boolean) => {
// https://github.com/siyuan-note/siyuan/pull/7086 // https://github.com/siyuan-note/siyuan/pull/7086
const openId = getSearch("id"); const openId = getSearch("id");
if (openId) { if (openId) {
openFileById({ // 启动时 layout 中有该文档,该文档还原会在此之后,因此需有延迟
id: openId, setTimeout(() => {
action: [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT], openFileById({
zoomIn: getSearch("focus") === "1" id: openId,
}); action: [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT],
zoomIn: getSearch("focus") === "1"
});
}, Constants.TIMEOUT_BLOCKLOAD);
} }
}; };