[Libreoffice-commits] core.git: vcl/source
Marco Cecchetti
marco.cecchetti at collabora.com
Tue Mar 8 20:23:35 UTC 2016
vcl/source/outdev/polygon.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 6651aca57bae1bef3343f26d1a0fd59d3802c1cd
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/23024
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 129f6de..1ca1d87 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