Commit 2c5366ab authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 30292 - [Textart]Не происходит применение Highlight Color к тексту в Text Art

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64583 954022d7-b5bf-4e40-9824-e11837661b57
parent cfb61dd1
......@@ -1763,7 +1763,14 @@ Paragraph.prototype =
var Element = aHigh.Get_Next();
while ( null != Element )
{
pGraphics.b_color1( Element.r, Element.g, Element.b, 255 );
if(!pGraphics.set_fillColor)
{
pGraphics.b_color1( Element.r, Element.g, Element.b, 255 );
}
else
{
pGraphics.set_fillColor( Element.r, Element.g, Element.b);
}
pGraphics.rect( Element.x0, Element.y0, Element.x1 - Element.x0, Element.y1 - Element.y0, Element.Additional2 );
pGraphics.df();
Element = aHigh.Get_Next();
......
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