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
const openId = getSearch("id");
if (openId) {
openFileById({
id: openId,
action: [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT],
zoomIn: getSearch("focus") === "1"
});
// 启动时 layout 中有该文档,该文档还原会在此之后,因此需有延迟
setTimeout(() => {
openFileById({
id: openId,
action: [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT],
zoomIn: getSearch("focus") === "1"
});
}, Constants.TIMEOUT_BLOCKLOAD);
}
};