Commit 93d33dc5 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 27512 - [Copy&Paste][Autosave] Происходит искажение автофигур после их...

Bug 27512 - [Copy&Paste][Autosave] Происходит искажение автофигур после их copy&paste и автосохранение 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59605 954022d7-b5bf-4e40-9824-e11837661b57
parent 4415671e
......@@ -9017,6 +9017,9 @@ function CreateGeometry(prst){
break;
}
}
f.setPreset(prst);
if(typeof prst === "string" && prst.length > 0)
{
f.setPreset(prst);
}
return f;
}
......@@ -3197,7 +3197,7 @@ function CBinaryFileWriter()
if (undefined === geom || null == geom)
return;
if (geom.preset != null && geom.preset != null)
if (typeof geom.preset === "string" && geom.preset.length > 0)
{
oThis.StartRecord(1);
......
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