Commit 8e6420f0 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48066 954022d7-b5bf-4e40-9824-e11837661b57
parent 2808a1ab
......@@ -1265,6 +1265,11 @@ function CBinaryFileWriter()
oThis._WriteInt1(17, rPr.FontSize * 100);
}
if (vertalign_SubScript == rPr.VertAlign)
oThis._WriteInt1(2, -25000);
else if (vertalign_SuperScript == rPr.VertAlign)
oThis._WriteInt1(2, 30000);
oThis.WriteUChar(g_nodeAttributeEnd);
oThis.WriteRecord1(1, rPr.unifill, oThis.WriteUniFill);
......
......@@ -3707,7 +3707,14 @@ function CThumbnailsManager()
{
if(global_keyboardEvent.CtrlKey)
{
return this.m_oWordControl.m_oLogicDocument.slidesCut(this.GetSelectedArray());
var _delete_array = this.GetSelectedArray();
if (_delete_array.length == this.m_oWordControl.m_oDrawingDocument.SlidesCount)
_delete_array.splice(0, 1);
if (_delete_array.length != 0)
{
this.m_oWordControl.m_oLogicDocument.slidesCut(_delete_array);
}
}
break;
}
......
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