Commit 427a2dde authored by Oleg Korshul's avatar Oleg Korshul

fix bug 33926

parent 3539a8ed
......@@ -3651,6 +3651,12 @@ CPresentation.prototype =
}
},
CheckTableStylesDefault: function(Slide)
{
var tableLook = new CTableLook(true, true, false, false, true, false);
return this.CheckTableStyles(Slide, tableLook);
},
CheckTableStyles: function(Slide, TableLook)
{
if(!this.TablesForInterface)
......
......@@ -2074,8 +2074,7 @@ background-repeat: no-repeat;\
if (logicDoc.CurPage >= logicDoc.Slides.length)
return;
var tableLook = new CTableLook(true, true, false, false, true, false);
logicDoc.CheckTableStyles(logicDoc.Slides[logicDoc.CurPage], tableLook);
logicDoc.CheckTableStylesDefault(logicDoc.Slides[logicDoc.CurPage]);
};
asc_docs_api.prototype.CollectHeaders = function()
......
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