Commit adf983c2 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Баг в rev 68196

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68197 954022d7-b5bf-4e40-9824-e11837661b57
parent de63e966
......@@ -887,12 +887,12 @@ CMathMatrix.prototype.Apply_MenuProps = function(Props)
{
if(Props.Action & c_oMathMenuAction.InsertBefore)
{
NextPos = (RowPos + 1)*ColumnCount; // позиция для вставки массива контентов
NextPos = RowPos*ColumnCount;
this.Add_Row(NextPos);
}
else
{
NextPos = RowPos*ColumnCount;
NextPos = (RowPos + 1)*ColumnCount; // позиция для вставки массива контентов
this.Add_Row(NextPos);
}
}
......@@ -909,7 +909,6 @@ CMathMatrix.prototype.Apply_MenuProps = function(Props)
}
}
if(Props.bHidePlh !== undefined)
{
if(Props.bHidePlh !== this.Pr.plcHide)
......
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