Commit 13dfb8df authored by Anna.Pavlova's avatar Anna.Pavlova

Поправлен баг, возникавший при сборке, в случае если были изменения с N-арным...

Поправлен баг, возникавший при сборке, в случае если были изменения с N-арным оператором (показывали/скрывали степень, limLoc меняли). Это происходило в связи с тем, что JustDraw элемент(сигма и т.п.), а именно Sign, не был определен

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68439 954022d7-b5bf-4e40-9824-e11837661b57
parent 19f345bc
...@@ -491,16 +491,7 @@ CNary.prototype.raw_SetLimLoc = function(Value) ...@@ -491,16 +491,7 @@ CNary.prototype.raw_SetLimLoc = function(Value)
if(this.Pr.limLoc !== Value) if(this.Pr.limLoc !== Value)
{ {
this.Pr.limLoc = Value; this.Pr.limLoc = Value;
this.RecalcInfo.bProps = true;
var PropsInfo =
{
limLoc : Value,
sign: this.Sign,
supHide: this.Pr.supHide,
subHide: this.Pr.subHide
};
this.fillBase(PropsInfo);
} }
}; };
CNary.prototype.raw_HideUpperIterator = function(Value) CNary.prototype.raw_HideUpperIterator = function(Value)
...@@ -508,16 +499,7 @@ CNary.prototype.raw_HideUpperIterator = function(Value) ...@@ -508,16 +499,7 @@ CNary.prototype.raw_HideUpperIterator = function(Value)
if(this.Pr.supHide !== Value) if(this.Pr.supHide !== Value)
{ {
this.Pr.supHide = Value; this.Pr.supHide = Value;
this.RecalcInfo.bProps = true;
var PropsInfo =
{
limLoc : this.Pr.limLoc,
sign: this.Sign,
supHide: this.Pr.supHide,
subHide: this.Pr.subHide
};
this.fillBase(PropsInfo);
this.CurPos = 2; this.CurPos = 2;
this.Arg.Cursor_MoveToStartPos(); this.Arg.Cursor_MoveToStartPos();
...@@ -528,16 +510,7 @@ CNary.prototype.raw_HideLowerIterator = function(Value) ...@@ -528,16 +510,7 @@ CNary.prototype.raw_HideLowerIterator = function(Value)
if(this.Pr.subHide !== Value) if(this.Pr.subHide !== Value)
{ {
this.Pr.subHide = Value; this.Pr.subHide = Value;
this.RecalcInfo.bProps = true;
var PropsInfo =
{
limLoc : this.Pr.limLoc,
sign: this.Sign,
supHide: this.Pr.supHide,
subHide: this.Pr.subHide
};
this.fillBase(PropsInfo);
this.CurPos = 2; this.CurPos = 2;
this.Arg.Cursor_MoveToStartPos(); this.Arg.Cursor_MoveToStartPos();
...@@ -808,6 +781,7 @@ CNary.prototype.Can_ModifyArgSize = function() ...@@ -808,6 +781,7 @@ CNary.prototype.Can_ModifyArgSize = function()
return this.CurPos !== 2 && false === this.Is_SelectInside(); return this.CurPos !== 2 && false === this.Is_SelectInside();
}; };
/** /**
* *
* @param CMathMenuNary * @param CMathMenuNary
......
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