Commit c727c521 authored by Sergey Luzyanin's avatar Sergey Luzyanin

turn off generating thumbnails in conversion to pdf

parent 05961870
......@@ -4766,7 +4766,11 @@ background-repeat: no-repeat;\
this.WordControl.m_oLayoutDrawer.HeightMM = presentation.Height;
this.WordControl.m_oMasterDrawer.WidthMM = presentation.Width;
this.WordControl.m_oMasterDrawer.HeightMM = presentation.Height;
this.WordControl.m_oLogicDocument.GenerateThumbnails(this.WordControl.m_oMasterDrawer, this.WordControl.m_oLayoutDrawer);
if(!window['native'])
{
this.WordControl.m_oLogicDocument.GenerateThumbnails(this.WordControl.m_oMasterDrawer, this.WordControl.m_oLayoutDrawer);
}
var _masters = this.WordControl.m_oLogicDocument.slideMasters;
for (var i = 0; i < _masters.length; i++)
......
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