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

Bug 27853 - Вместо выбранной темы появляется "красный крест" после применения в настройках Tile

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60052 954022d7-b5bf-4e40-9824-e11837661b57
parent 34b594fb
......@@ -2146,10 +2146,9 @@ asc_docs_api.prototype.SetSlideProps = function(prop)
return;
}
var _old_fill = null;
var _oldBg = this.WordControl.m_oLogicDocument.Slides[this.WordControl.m_oLogicDocument.CurPage].cSld.Bg;
if (_oldBg != null && _oldBg.bgPr != null && _oldBg.bgPr.Fill != null)
_old_fill = _oldBg.bgPr.Fill.createDuplicate();
var _old_fill = this.WordControl.m_oLogicDocument.Slides[this.WordControl.m_oLogicDocument.CurPage].backgroundFill;
if (isRealObject(_old_fill))
_old_fill = _old_fill.createDuplicate();
var bg = new CBg();
bg.bgPr = new CBgPr();
......
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