diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2016-03-08 10:03:06 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-03-17 08:00:56 +0000 |
commit | 778d0154755b4c2b35041a1a7ab58a48c9e0de13 (patch) | |
tree | b41775d9b4fc33617f6ad44c9918c5a10b6f726c | |
parent | 74c4ae75c06068f8c208973636825603ca49a00e (diff) |
tdf#98052 - even polygons were not drawn on the alpha device
Change-Id: I5725ec23869b295c8021bef0330ee6f69f206351
Reviewed-on: https://gerrit.libreoffice.org/23025
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r-- | vcl/source/outdev/polygon.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx index 369551ef7b41..0165b0da1d16 100644 --- a/vcl/source/outdev/polygon.cxx +++ b/vcl/source/outdev/polygon.cxx @@ -212,6 +212,8 @@ void OutputDevice::DrawPolygon( const Polygon& rPoly ) if(bSuccess) { + if( mpAlphaVDev ) + mpAlphaVDev->DrawPolygon( rPoly ); return; } } |