Commit b9bf2420 authored by Ilya.Kirillov's avatar Ilya.Kirillov

Сделано, чтобы все таблицы внутри автофигур считались inline (баг 30303).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64904 954022d7-b5bf-4e40-9824-e11837661b57
parent a11dc40d
......@@ -14204,6 +14204,10 @@ CDocument.prototype.EndPreview_MailMergeResult = function()
editor.sync_EndPreviewMailMergeResult();
};
CDocument.prototype.Is_MailMergePreviewResult = function()
{
return this.MailMergePreview;
};
CDocument.prototype.Add_MailMergeField = function(Name)
{
if (false === this.Document_Is_SelectionLocked(changestype_Paragraph_Content))
......
......@@ -5359,6 +5359,9 @@ CTable.prototype =
Is_Inline : function()
{
if (this.Parent && true === this.Parent.Is_DrawingShape())
return true;
return this.Inline;
},
......
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