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

1. Поправила ошибки на Resize для Nary и COperators

2. Поправила Refresh_RecalcData

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56242 954022d7-b5bf-4e40-9824-e11837661b57
parent 76b94311
......@@ -6889,7 +6889,8 @@ CMathContent.prototype =
},
Refresh_RecalcData: function()
{
this.Composition.Refresh_RecalcData2(); // Refresh_RecalcData сообщает родительскому классу, что у него произошли изменения, нужно пересчитать
if(this.ParaMath !== null)
this.ParaMath.Refresh_RecalcData(); // Refresh_RecalcData сообщает родительскому классу, что у него произошли изменения, нужно пересчитать
// Refresh_RecalcData2 у родительского класса сообщает, что у внутреннего класса произошли изменения, нужен пересчет
// временно
//this.RecalculateReverse();
......
......@@ -591,12 +591,6 @@ CNaryOperator.prototype.Resize = function(Parent, ParaMath, oMeasure)
this.Parent = Parent;
this.ParaMath = ParaMath;
if(this.RecalcInfo.bCtrPrp == true)
{
this.Set_CompiledCtrPrp();
this.RecalcInfo.bCtrPrp = false;
}
this.recalculateSize(); //обычный пересчет, oMeasure не нужен
}
/*CNaryOperator.prototype.setComposition = function(Compos)
......
......@@ -3223,12 +3223,6 @@ COperator.prototype.Resize = function(Parent, ParaMath, oMeasure)
this.ParaMath = ParaMath;
this.Parent = Parent;
if(this.RecalcInfo.bCtrPrp == true)
{
this.Set_CompiledCtrPrp();
this.RecalcInfo.bCtrPrp = false;
}
if(this.operator !== -1)
{
var bHor = this.operator.loc == 0 || this.operator.loc == 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