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

Поправила баг с зависанием: случай когда картинка находится в параграфе после...

Поправила баг с зависанием: случай когда картинка находится в параграфе после формулы  и пересекала область расположения формулы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64334 954022d7-b5bf-4e40-9824-e11837661b57
parent ac0305e9
......@@ -1505,8 +1505,9 @@ ParaMath.prototype.CompareMathInfo = function(RecalculateObject)
{
return RecalculateObject.Compare(this.PageInfo);
};
ParaMath.prototype.Recalculate_Reset = function(CurRange, CurLine)
ParaMath.prototype.Recalculate_Reset = function(CurRange, CurLine, RecalcResult)
{
if(RecalcResult !== recalcresult_PrevLine)
this.Root.Recalculate_Reset(CurRange, CurLine); // обновим StartLine и StartRange только для Root (в CParagraphContentWithContentBase), для внутренних элементов обновится на Recalculate_Range
};
ParaMath.prototype.Recalculate_Set_RangeEndPos = function(PRS, PRP, Depth)
......
......@@ -1668,7 +1668,7 @@ Paragraph.prototype.private_RecalculateRange = function(CurRange, CurL
if ( ( 0 === Pos && 0 === CurLine && 0 === CurRange ) || Pos !== StartPos )
{
Item.Recalculate_Reset( CurRange, CurLine );
Item.Recalculate_Reset( CurRange, CurLine, PRS.RecalcResult);
}
PRS.Update_CurPos( Pos, 0 );
......
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