Commit 609004ce authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug with heck hit in a selection with footnotes on a page.

parent a7d09181
...@@ -15302,6 +15302,9 @@ CDocument.prototype.controller_IsMovingTableBorder = function() ...@@ -15302,6 +15302,9 @@ CDocument.prototype.controller_IsMovingTableBorder = function()
}; };
CDocument.prototype.controller_CheckPosInSelection = function(X, Y, PageAbs, NearPos) CDocument.prototype.controller_CheckPosInSelection = function(X, Y, PageAbs, NearPos)
{ {
if (true === this.Footnotes.CheckHitInFootnote(X, Y, PageAbs))
return false;
if (true === this.Selection.Use) if (true === this.Selection.Use)
{ {
switch (this.Selection.Flag) switch (this.Selection.Flag)
......
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