Commit eb56ac71 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 30406 - [TextArt] [Copy&Paste] Текст отображается с дефолтной...

Bug 30406 - [TextArt] [Copy&Paste] Текст отображается с дефолтной трансформацией, если находится внутри фигуры

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64822 954022d7-b5bf-4e40-9824-e11837661b57
parent 5e3c1ca5
......@@ -140,7 +140,10 @@ StartAddNewShape.prototype =
function checkEmptyPlaceholderContent(content)
{
if(!content || content.Parent && content.Parent.parent && (content.Is_Empty() && content.Parent.parent.isPlaceholder && content.Parent.parent.isPlaceholder() || content.Parent.parent.txWarpStruct) )
if(!content ||
content.Parent && content.Parent.parent &&
(content.Is_Empty() && content.Parent.parent.isPlaceholder && content.Parent.parent.isPlaceholder() ||
content.Parent.parent.txWarpStruct || content.Parent.parent.recalcInfo && content.Parent.parent.recalcInfo.warpGeometry) )
return content;
return null;
}
......
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