Commit 06424554 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с работой кнопок Home/End в строке с формулами.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60152 954022d7-b5bf-4e40-9824-e11837661b57
parent 0a7fef8b
......@@ -1579,7 +1579,8 @@ ParaMath.prototype.Get_EndRangePos = function(_CurLine, _CurRange, SearchPos, De
if (EndPos >= 1)
{
// TODO: ParaMath.Get_EndRangePos Сделать для случая, когда формула будет занимать несколько строк
return this.Root.Get_EndPos(false, SearchPos.Pos, Depth);
this.Root.Get_EndPos(false, SearchPos.Pos, Depth);
return true;
}
return false;
......@@ -1595,7 +1596,8 @@ ParaMath.prototype.Get_StartRangePos = function(_CurLine, _CurRange, SearchPos,
if (EndPos >= 1)
{
// TODO: ParaMath.Get_StartRangePos Сделать для случая, когда формула будет занимать несколько строк
return this.Root.Get_StartPos(SearchPos.Pos, Depth);
this.Root.Get_StartPos(SearchPos.Pos, Depth);
return true;
}
return false;
......
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