diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index df87cc34c..326b7abe7 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -498,6 +498,11 @@ export const popTextCell = (protyle: IProtyle, cellElements: HTMLElement[], type avMaskElement.addEventListener("contextmenu", (event) => { removeAvMask(event); }); + avMaskElement.addEventListener("mousedown", (event:MouseEvent) => { + if (event.button === 1) { + removeAvMask(event); + } + }); }; const updateCellValueByInput = (protyle: IProtyle, type: TAVCol, blockElement: HTMLElement, cellElements: HTMLElement[]) => {