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

Bug 27787 - Плейсхолдеры с текстом остаются на месте, после смены макета слайда

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60063 954022d7-b5bf-4e40-9824-e11837661b57
parent 10e50725
......@@ -489,6 +489,11 @@ CGraphicFrame.prototype =
this.recalcTransform && this.recalcTransform();
},
recalcTransform: function()
{
this.recalcInfo.recalculateTransform = true;
},
getTransform: function()
{
if(this.recalcInfo.recalculateTransform)
......
......@@ -357,6 +357,12 @@ Slide.prototype =
case historyitem_SlideSetBg:
{
this.recalcInfo.recalculateBackground = true;
break;
}
case historyitem_SlideSetLayout:
{
this.checkSlideTheme();
break;
}
}
this.addToRecalculate();
......
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