fdo#50269: bitmap area fill pattern reversed in LO3.5.x
this partially reverted 619ea0c6d3b8fb4390bf5e82f1b44608c3cd878d in order to retain a hack for non-black background color Change-Id: I89d89cedb5e27e2a05b1ecc13569e4899d1743d2
This commit is contained in:
parent
16ae7484b0
commit
134028c616
@ -1723,8 +1723,17 @@ void DffPropertyReader::ApplyFillAttributes( SvStream& rIn, SfxItemSet& rSet, co
|
||||
aXOBitmap.Bitmap2Array();
|
||||
aXOBitmap.SetBitmapType( XBITMAP_8X8 );
|
||||
aXOBitmap.SetPixelSize( aBmp.GetSizePixel() );
|
||||
aXOBitmap.SetPixelColor( aCol1 );
|
||||
aXOBitmap.SetBackgroundColor( aCol2 );
|
||||
|
||||
if( aXOBitmap.GetBackgroundColor() == COL_BLACK )
|
||||
{
|
||||
aXOBitmap.SetPixelColor( aCol1 );
|
||||
aXOBitmap.SetBackgroundColor( aCol2 );
|
||||
}
|
||||
else
|
||||
{
|
||||
aXOBitmap.SetPixelColor( aCol2 );
|
||||
aXOBitmap.SetBackgroundColor( aCol1 );
|
||||
}
|
||||
aXOBitmap.Array2Bitmap();
|
||||
}
|
||||
rSet.Put( XFillBitmapItem( rtl::OUString(), aXOBitmap ) );
|
||||
|
Loading…
x
Reference in New Issue
Block a user