[pdf] Fix bug #79869

This commit is contained in:
Nikita Khromov
2026-02-06 12:54:28 +07:00
committed by Ilya Kirillov
parent 767f828b34
commit d14fe1caa0

View File

@ -2220,7 +2220,7 @@
};
this.canSelectPageText = function() {
let oDoc = this.getPDFDoc();
return !oDoc.activeDrawing && !oDoc.activeForm && (!oDoc.mouseDownAnnot || (oDoc.mouseDownAnnot && oDoc.mouseDownAnnot.IsTextMarkup() == true)) && !this.Api.isInkDrawerOn() && !this.Api.isStartAddShape;
return !oDoc.activeDrawing && !oDoc.activeForm && (!oDoc.mouseDownAnnot || (oDoc.mouseDownAnnot && oDoc.mouseDownAnnot.IsTextMarkup() == true)) && !this.Api.isInkDrawerOn() && !this.Api.isStartAddShape && false !== Asc.editor.canInteract;
};
this.onMouseWhell = function(e)
{