mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-02-10 18:15:19 +08:00
[pdf] Fix bug #79869
This commit is contained in:
committed by
Ilya Kirillov
parent
767f828b34
commit
d14fe1caa0
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user