[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - vcl/source
Marco Cecchetti
marco.cecchetti at collabora.com
Tue Mar 8 17:03:00 UTC 2016
vcl/source/outdev/polygon.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 55ec8dd8af96756b00d5a617dc5a58abe73118d6
Author: Marco Cecchetti <marco.cecchetti at collabora.com>
Date: Tue Mar 8 10:03:06 2016 +0100
tdf#98052 - even polygons were not drawn on the alpha device
Change-Id: I5725ec23869b295c8021bef0330ee6f69f206351
Reviewed-on: https://gerrit.libreoffice.org/23026
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx
index bcd7bac..2ad4e95 100644
--- a/vcl/source/outdev/polygon.cxx
+++ b/vcl/source/outdev/polygon.cxx
@@ -212,6 +212,8 @@ void OutputDevice::DrawPolygon( const tools::Polygon& rPoly )
if(bSuccess)
{
+ if( mpAlphaVDev )
+ mpAlphaVDev->DrawPolygon( rPoly );
return;
}
}
More information about the Libreoffice-commits
mailing list