Commit 1d4e16ef authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug #31803 - [Copy&Paste] После вырезания текста в автофигуре вставляется пустая строка

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68667 954022d7-b5bf-4e40-9824-e11837661b57
parent 1efee6e0
......@@ -324,9 +324,17 @@ CHistory.prototype =
return false;
var RecalcData = this.Get_RecalcData();
if (RecalcData.Flow.length > 0 || RecalcData.HdrFtr.length > 0 || -1 !== RecalcData.Inline.Pos)
if (RecalcData.Flow.length > 0 || RecalcData.HdrFtr.length > 0 || -1 !== RecalcData.Inline.Pos || true === RecalcData.Drawings.All)
return true;
for(var Key in RecalcData.Drawings.Map)
{
if(null != g_oTableId.Get_ById(Key))
{
return true;
}
}
return false;
},
......
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