Vanessa 2025-06-29 22:13:12 +08:00
parent 9915c733f4
commit 62850f8cc3
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
import {updateHeader} from "../render/av/row";
export const clearSelect = (types: ("av" | "img" | "cell" | "row"|"galleryItem")[], element: Element) => {
export const clearSelect = (types: ("av" | "img" | "cell" | "row" | "galleryItem")[], element: Element) => {
if (types.includes("cell")) {
element.querySelectorAll(".av__cell--select, .av__cell--active").forEach((item: HTMLElement) => {
item.querySelector(".av__drag-fill")?.remove();

View file

@ -622,6 +622,7 @@ export class WYSIWYG {
// https://github.com/siyuan-note/siyuan/issues/15100
if (galleryItemElement) {
clearSelect(["galleryItem"], protyle.wysiwyg.element);
return;
}
const avDragFillElement = hasClosestByClassName(target, "av__drag-fill");