Commit 7cfb2692 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Bug #31789 Исправлен баг с обтеканием автофигур (c типом Top and Bottom),...

Bug #31789 Исправлен баг с обтеканием автофигур (c типом Top and Bottom), которые находились вне колонки.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68593 954022d7-b5bf-4e40-9824-e11837661b57
parent 9941a8c9
...@@ -262,6 +262,9 @@ CWrapPolygon.prototype = ...@@ -262,6 +262,9 @@ CWrapPolygon.prototype =
} }
case WRAPPING_TYPE_TOP_AND_BOTTOM: case WRAPPING_TYPE_TOP_AND_BOTTOM:
{ {
if (this.right < LeftField || this.left > RightField)
return ret;
ret2.push({X0: x0, X1: x1, Y1: this.bottom}); ret2.push({X0: x0, X1: x1, Y1: this.bottom});
break; break;
} }
......
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