Commit 921655bf authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

правка бага 21075 - [Copy&Paste] Пропадает несколько абзацев текста при их...

правка бага  21075 - [Copy&Paste] Пропадает несколько абзацев текста при их выделении и вставки нового текста

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50767 954022d7-b5bf-4e40-9824-e11837661b57
parent 4d3fba34
...@@ -2947,11 +2947,12 @@ PasteProcessor.prototype = ...@@ -2947,11 +2947,12 @@ PasteProcessor.prototype =
{ {
var nNewContentLength = aNewContent.length; var nNewContentLength = aNewContent.length;
//����� ���� �� Document.Add_NewParagraph //����� ���� �� Document.Add_NewParagraph
var Item = oDoc.Content[oDoc.CurPos.ContentPos];
oDoc.Remove(1, true, true); oDoc.Remove(1, true, true);
var Item = oDoc.Content[oDoc.CurPos.ContentPos];
if( type_Paragraph == Item.GetType() ) if( type_Paragraph == Item.GetType() )
{ {
if(true != this.bInBlock && 1 == nNewContentLength && type_Paragraph == aNewContent[0].GetType()) if(/*true != this.bInBlock &&*/ 1 == nNewContentLength && type_Paragraph == aNewContent[0].GetType() && Item.CurPos.ContentPos != 1)
{ {
//������� ������ � �������� //������� ������ � ��������
var oInsertPar = aNewContent[0]; var oInsertPar = aNewContent[0];
......
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