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

Исправлен баг с добавленим TextArt в режиме рецензирования (баг 30887).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66227 954022d7-b5bf-4e40-9824-e11837661b57
parent 3a78ee3d
......@@ -8424,10 +8424,10 @@ CTextPr.prototype =
TextPr.Unifill = this.Unifill.createDuplicate();
if (undefined !== this.TextOutline && (undefined === PrChange.TextOutline || true !== this.TextOutline.IsIdentical(PrChange.TextOutline)))
TextPr.TextOutline = this.TextOutline.createDublicate();
TextPr.TextOutline = this.TextOutline.createDuplicate();
if (undefined !== this.TextFill && (undefined === PrChange.TextFill || true !== this.TextFill.IsIdentical(PrChange.TextFill)))
TextPr.TextFill = this.TextFill.createDublicate();
TextPr.TextFill = this.TextFill.createDuplicate();
if (this.Vanish !== PrChange.Vanish)
TextPr.Vanish = this.Vanish;
......
......@@ -301,7 +301,7 @@ CDocument.prototype.Accept_AllRevisionChanges = function()
LogicDoc.Accept_RevisionChanges(undefined, true);
}
}
this.Selection_Remove();
this.private_CorrectDocumentPosition();
this.Recalculate();
this.Document_UpdateSelectionState();
......@@ -323,7 +323,7 @@ CDocument.prototype.Reject_AllRevisionChanges = function()
LogicDoc.Reject_RevisionChanges(undefined, true);
}
}
this.Selection_Remove();
this.private_CorrectDocumentPosition();
this.Recalculate();
this.Document_UpdateSelectionState();
......
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