svx/source/svdraw/sdrpaintwindow.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1994fb2b3018867ba5d0d5134a7d5998a25658c6 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Tue Jul 1 13:29:56 2025 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Tue Jul 1 15:24:33 2025 +0200 tdf#166842 do not use FillColor==COL_TRANSPARENT... .. on OutputDevice if that OutputDevice does not support alpha Change-Id: I423aaa2a1366b1d2dc5793cccafa3af58b8fe0ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187236 Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> Tested-by: Jenkins diff --git a/svx/source/svdraw/sdrpaintwindow.cxx b/svx/source/svdraw/sdrpaintwindow.cxx index 5f3f65fe38e3..a8396f6c8cb0 100644 --- a/svx/source/svdraw/sdrpaintwindow.cxx +++ b/svx/source/svdraw/sdrpaintwindow.cxx @@ -115,7 +115,7 @@ void CandidateMgr::PaintTransparentChildren(vcl::Window const & rWindow, tools:: SdrPreRenderDevice::SdrPreRenderDevice(OutputDevice& rOriginal) : mpOutputDevice(&rOriginal), - mpPreRenderDevice(VclPtr<VirtualDevice>::Create()) + mpPreRenderDevice(VclPtr<VirtualDevice>::Create(DeviceFormat::WITH_ALPHA)) { }