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)
if(this.Pr.limLoc !== Value)
{
this.Pr.limLoc = Value;
var PropsInfo =
{
limLoc : Value,
sign: this.Sign,
supHide: this.Pr.supHide,
subHide: this.Pr.subHide
};
this.fillBase(PropsInfo);
this.RecalcInfo.bProps = true;
}
};
CNary.prototype.raw_HideUpperIterator = function(Value)
......@@ -508,16 +499,7 @@ CNary.prototype.raw_HideUpperIterator = function(Value)
if(this.Pr.supHide !== Value)
{
this.Pr.supHide = Value;
var PropsInfo =
{
limLoc : this.Pr.limLoc,
sign: this.Sign,
supHide: this.Pr.supHide,
subHide: this.Pr.subHide
};
this.fillBase(PropsInfo);
this.RecalcInfo.bProps = true;
this.CurPos = 2;
this.Arg.Cursor_MoveToStartPos();
......@@ -528,16 +510,7 @@ CNary.prototype.raw_HideLowerIterator = function(Value)
if(this.Pr.subHide !== Value)
{
this.Pr.subHide = Value;
var PropsInfo =
{
limLoc : this.Pr.limLoc,
sign: this.Sign,
supHide: this.Pr.supHide,
subHide: this.Pr.subHide
};
this.fillBase(PropsInfo);
this.RecalcInfo.bProps = true;
this.CurPos = 2;
this.Arg.Cursor_MoveToStartPos();
......@@ -808,6 +781,7 @@ CNary.prototype.Can_ModifyArgSize = function()
return this.CurPos !== 2 && false === this.Is_SelectInside();
};
/**
*
* @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