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

Исправлен баг при работе с формулами, находящимися в посещенной гиперссылке...

Исправлен баг при работе с формулами, находящимися в посещенной гиперссылке (баг 27420 reop). Исправлен баг с изменением размеров буквицы (баг 27549).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59934 954022d7-b5bf-4e40-9824-e11837661b57
parent d66d2fbc
......@@ -1405,7 +1405,7 @@ ParaMath.prototype.Draw_Lines = function(PDSL)
var CurColor, RGBA, Theme = this.Paragraph.Get_Theme(), ColorMap = this.Paragraph.Get_ColorMap();
// Выставляем цвет обводки
if ( true === PDSL.VisitedHyperlink && ( undefined === this.Pr.Color && undefined === this.Pr.Unifill ) )
if ( true === PDSL.VisitedHyperlink && ( undefined === FirstRPrp.Color && undefined === FirstRPrp.Unifill ) )
CurColor = new CDocumentColor( 128, 0, 151 );
else if ( true === FirstRPrp.Color.Auto && !FirstRPrp.Unifill)
CurColor = new CDocumentColor( AutoColor.r, AutoColor.g, AutoColor.b );
......
......@@ -9085,7 +9085,8 @@ Paragraph.prototype =
var PageH = this.LogicDocument.Get_PageLimits( PageIndex).YLimit;
var _H = Math.min( H, PageH );
NewFramePr.Lines = this.Update_DropCapByHeight( _H );
NewFramePr.HRule = linerule_Auto;
NewFramePr.HRule = linerule_Exact;
NewFramePr.H = H;
}
else
{
......
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