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

Исправлен баг с коректированием позиции курсора внутри параграфа (баг 19745).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49663 954022d7-b5bf-4e40-9824-e11837661b57
parent fd137a8b
......@@ -6578,7 +6578,7 @@ Paragraph.prototype =
if ( CurPos <= 0 )
{
CurPos = 0;
while ( para_TextPr === this.Content[CurPos].Type )
while ( para_TextPr === this.Content[CurPos].Type || para_CollaborativeChangesEnd === this.Content[CurPos].Type || para_CollaborativeChangesStart === this.Content[CurPos].Type )
CurPos++;
this.CurPos.ContentPos = CurPos;
......
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