summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index 7758ed426cd5..8b660cbcca9e 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -190,9 +190,13 @@ namespace drawinglayer
// set FillColor Attribute
// FIXME(matteocam)
// XXX: is "Color" the right type
- const Color aFillColor(pTCPP->getFillColor() );
- if( aFillColor != COL_TRANSPARENT )
+
+ //const Color aFillColor(pTCPP->getFontFillColor() );
+ //if( aFillColor != COL_TRANSPARENT )
+ // set fill Color if underlined
+ if ( eFontUnderline != UNDERLINE_NONE )
{
+ aFillColor = RGB_COLORDATA(0x66, 0x66, 0xff)
aFont.SetFillColor(aFillColor);
aFont.SetTransparent(false);
}