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

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

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