Vanessa 2024-05-10 18:13:23 +08:00
parent 7dae8726ea
commit a6ab0c58d2

View file

@ -235,9 +235,7 @@ ${getTypeByCellElement(item) === "block" ? ' data-detached="true"' : ""}><span c
};
export const stickyRow = (blockElement: HTMLElement, elementRect: DOMRect, status: "top" | "bottom" | "all") => {
if (blockElement.querySelector(".av__title").getAttribute("contenteditable") === "false") {
return;
}
// 只读模式下也许固定 https://github.com/siyuan-note/siyuan/issues/11338
const scrollRect = blockElement.querySelector(".av__scroll").getBoundingClientRect();
const headerElement = blockElement.querySelector(".av__row--header") as HTMLElement;
if (headerElement && (status === "top" || status === "all")) {