mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-23 18:10:12 +01:00
This commit is contained in:
parent
5bdaa3d9fd
commit
8639fce8c0
1 changed files with 7 additions and 0 deletions
|
|
@ -120,6 +120,9 @@ export class Dock {
|
||||||
} else {
|
} else {
|
||||||
this.layout.element.style.height = "0px";
|
this.layout.element.style.height = "0px";
|
||||||
}
|
}
|
||||||
|
if (document.querySelector("body").classList.contains("body--win32")) {
|
||||||
|
document.getElementById("drag").classList.remove("fn__hidden");
|
||||||
|
}
|
||||||
this.resizeElement.classList.add("fn__none");
|
this.resizeElement.classList.add("fn__none");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -234,6 +237,10 @@ export class Dock {
|
||||||
} else {
|
} else {
|
||||||
this.layout.element.style.height = this.getMaxSize() + "px";
|
this.layout.element.style.height = this.getMaxSize() + "px";
|
||||||
}
|
}
|
||||||
|
if ((type === "graph" || type === "globalGraph") &&
|
||||||
|
document.querySelector("body").classList.contains("body--win32") && this.layout.element.querySelector(".fullscreen")) {
|
||||||
|
document.getElementById("drag").classList.add("fn__hidden");
|
||||||
|
}
|
||||||
this.resizeElement.classList.remove("fn__none");
|
this.resizeElement.classList.remove("fn__none");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue