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

Исправлен баг с рисованием нумерованных параграфов (баг 19367).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48276 954022d7-b5bf-4e40-9824-e11837661b57
parent 90b1ba27
...@@ -336,6 +336,9 @@ Paragraph.prototype = ...@@ -336,6 +336,9 @@ Paragraph.prototype =
if ( this.Selection.EndPos >= Pos ) if ( this.Selection.EndPos >= Pos )
this.Selection.EndPos++; this.Selection.EndPos++;
if ( this.Numbering.Pos >= Pos )
this.Numbering.Pos++;
// Также передвинем всем метки переносов страниц и строк // Также передвинем всем метки переносов страниц и строк
var LinesCount = this.Lines.length; var LinesCount = this.Lines.length;
for ( var CurLine = 0; CurLine < LinesCount; CurLine++ ) for ( var CurLine = 0; CurLine < LinesCount; CurLine++ )
...@@ -421,6 +424,9 @@ Paragraph.prototype = ...@@ -421,6 +424,9 @@ Paragraph.prototype =
this.Selection.EndPos--; this.Selection.EndPos--;
} }
if ( this.Numbering.Pos > Pos )
this.Numbering.Pos--;
// Также передвинем всем метки переносов страниц и строк // Также передвинем всем метки переносов страниц и строк
var LinesCount = this.Lines.length; var LinesCount = this.Lines.length;
for ( var CurLine = 0; CurLine < LinesCount; CurLine++ ) for ( var CurLine = 0; CurLine < LinesCount; CurLine++ )
......
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