sfx2/source/view/lokstarmathhelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 029f87bbda6f7c01cabc727ad5a004b307ff346e Author: Caolán McNamara <[email protected]> AuthorDate: Mon Feb 23 20:36:05 2026 +0000 Commit: Mike Kaganski <[email protected]> CommitDate: Tue Feb 24 06:21:21 2026 +0100 fix content all transparent in kit mode after drawing math object commit e0d4d178caff1414a9a21fa57f06bc8d4d2c389a Date: Mon Jan 13 15:03:05 2025 +0200 Change alpha behavour of OutputDevice::SetFillColor It is pretty ugly bad on several levels. added a false argument to the similar calls for chart, etc, but not to this one, probably because it wasn't there at the time. So this route cleared the destination buffer. Change-Id: I7cfcf8cd296fc012dde6d3568cbcbb93da9fff21 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200093 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sfx2/source/view/lokstarmathhelper.cxx b/sfx2/source/view/lokstarmathhelper.cxx index 78f27b9d7732..c9dacdf732a2 100644 --- a/sfx2/source/view/lokstarmathhelper.cxx +++ b/sfx2/source/view/lokstarmathhelper.cxx @@ -220,7 +220,7 @@ void LokStarMathHelper::PaintAllInPlaceOnTile(VirtualDevice& rDevice, int nOutpu const int nPartForCurView = pCurView->getPart(); // Resizes the virtual device to contain the entries context - rDevice.SetOutputSizePixel({ nOutputWidth, nOutputHeight }); + rDevice.SetOutputSizePixel({ nOutputWidth, nOutputHeight }, /*bErase*/ false); auto popIt = rDevice.ScopedPush(vcl::PushFlags::MAPMODE); MapMode aMapMode(rDevice.GetMapMode());
