Commit 1073c5c7 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с рассчетом параграфа (баг 21534).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51128 954022d7-b5bf-4e40-9824-e11837661b57
parent b41e479e
......@@ -935,7 +935,7 @@ Paragraph.prototype =
// Смещаемся в начало параграфа на первой странице или в начало страницы, если страница не первая
var X, Y, XLimit, YLimit, _X, _XLimit;
if ( 0 === CurPage || undefined != this.Get_FramePr() )
if ( 0 === CurPage || ( undefined != this.Get_FramePr() && this.Parent instanceof CDocument ) )
{
X = this.X + ParaPr.Ind.Left + ParaPr.Ind.FirstLine;
Y = this.Y;
......
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