Commit 951da61c authored by Sergey Luzyanin's avatar Sergey Luzyanin

isPointInDrawingObjects3

parent dc0c74d7
...@@ -2867,11 +2867,11 @@ CGraphicObjects.prototype = ...@@ -2867,11 +2867,11 @@ CGraphicObjects.prototype =
return this.isPointInDrawingObjects(x, y, pageIndex, bSelected, true) > -1; return this.isPointInDrawingObjects(x, y, pageIndex, bSelected, true) > -1;
}, },
isPointInDrawingObjects3: function(x, y, pageIndex, bSelected) isPointInDrawingObjects3: function(x, y, pageIndex)
{ {
var oOldState = this.curState; var oOldState = this.curState;
this.changeCurrentState(new AscFormat.NullState(this)); this.changeCurrentState(new AscFormat.NullState(this));
var bRet = this.isPointInDrawingObjects(x, y, pageIndex, bSelected, true) > -1; var bRet = this.isPointInDrawingObjects(x, y, pageIndex, true, true) > -1;
this.changeCurrentState(oOldState); this.changeCurrentState(oOldState);
return bRet; return bRet;
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment