vcl/inc/skia/gdiimpl.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1e1c9a6da141e37e862cdb8bacfb685f4da40251 Author: Noel Grandin <[email protected]> AuthorDate: Fri Nov 21 11:41:08 2025 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Fri Nov 21 13:53:01 2025 +0100 tdf#169225 Color emoji background appears black with certain fonts regression from commit 088a7c7c451321a800ca8d3523a18b6bb93239b7 Author: Noel Grandin <[email protected]> Date: Tue Sep 24 16:18:11 2024 +0200 remove alpha device from OutputDevice Change-Id: I4ae192136479bcb1ef8e6195bc5b1115d7a0425b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194312 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/vcl/inc/skia/gdiimpl.hxx b/vcl/inc/skia/gdiimpl.hxx index df08b15f2b8b..774275f0a2da 100644 --- a/vcl/inc/skia/gdiimpl.hxx +++ b/vcl/inc/skia/gdiimpl.hxx @@ -420,7 +420,7 @@ inline SkPaint SkiaSalGraphicsImpl::makeGradientPaint() const { return makePaint inline SkPaint SkiaSalGraphicsImpl::makeTextPaint(std::optional<Color> color) const { assert(color.has_value()); - SkPaint paint = makePaintInternal(); + SkPaint paint = makePaintInternal(/*bSrcATop*/ true); paint.setColor(SkiaHelper::toSkColor(*color)); return paint; }
