This commit is contained in:
Vanessa 2023-11-02 16:25:33 +08:00
parent d5dfb2a732
commit a5f60614ae
2 changed files with 7 additions and 9 deletions

View file

@ -309,11 +309,13 @@ export const initWindow = async (app: App) => {
const focus = urlObj.searchParams.get("focus") === "1";
fetchPost("/api/block/checkBlockExist", {id}, existResponse => {
if (existResponse.data) {
openFileById({
app,
id,
action: [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT, Constants.CB_GET_ROOTSCROLL],
zoomIn: focus,
fetchPost("/api/block/checkBlockFold", {id}, (foldResponse) => {
openFileById({
app,
id,
action: (foldResponse.data || focus) ? [Constants.CB_GET_FOCUS, Constants.CB_GET_ALL] : [Constants.CB_GET_FOCUS, Constants.CB_GET_CONTEXT, Constants.CB_GET_ROOTSCROLL],
zoomIn: foldResponse.data || focus
});
});
ipcRenderer.send(Constants.SIYUAN_CMD, "show");
}

View file

@ -1708,10 +1708,6 @@ export class WYSIWYG {
activeBlur();
hideKeyboardToolbar();
/// #else
if (aElement) {
window.open(aLink);
return;
}
if (event.shiftKey) {
openFileById({
app: protyle.app,