Commit 98d3ff73 authored by Anna.Pavlova's avatar Anna.Pavlova

Поправила баг : отсутствовала подсветка для однострочных (bOneLine, радикал и...

Поправила баг : отсутствовала подсветка для однострочных (bOneLine, радикал и пр) контентов на страницах, отличных от первой.
Баг повторялся в документе "Формула в автофигуре.docx" при добавлении радикала на второй странице.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66780 954022d7-b5bf-4e40-9824-e11837661b57
parent bc63ff5f
......@@ -2663,7 +2663,21 @@ ParaMath.prototype.Get_ContentSelection = function()
{
if(oContent.bOneLine)
{
Bounds = oContent.Get_Bounds();
Bounds = [];
Bounds[0] = [];
var StartParaPage = this.Paragraph.Get_StartPage_Absolute();
var ContentBounds = oContent.Get_Bounds();
var oBound = ContentBounds[0][0];
Bounds[0][0] =
{
X: oBound.X,
Y: oBound.Y,
W: oBound.W,
H: oBound.H,
Page: oBound.Page + StartParaPage
};
}
else
{
......@@ -2822,7 +2836,7 @@ ParaMath.prototype.private_GetBounds = function(Content)
if(Content.bRoot == false)
{
if(HLine < oBound.H)
if(HLine < oBound.H) // сделано для случаев, когда межстрочный интервал небольшой
{
Height = HLine;
Y = YLine;
......
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