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

fix bug 33926

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