🎨 #11880
This commit is contained in:
parent
70fb00e77b
commit
e4e211a260
1 changed files with 5 additions and 0 deletions
|
@ -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[]) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue