[Libreoffice-commits] core.git: vcl/source
Miklos Vajna (via logerrit)
logerrit at kemper.freedesktop.org
Tue Aug 27 18:17:58 UTC 2019
vcl/source/window/paint.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit a5cafe5d7e87c0f5ecdcffbbe58c66abcb97ac8e
Author: Miklos Vajna <vmiklos at collabora.com>
AuthorDate: Tue Aug 27 17:54:34 2019 +0200
Commit: Miklos Vajna <vmiklos at collabora.com>
CommitDate: Tue Aug 27 20:16:07 2019 +0200
tdf#91843 sd sidebar: fix unexpected borders around the slide layout previews
Regression from commit e5bb5c52aeaeb60c8592b004efd88c30242e03a1 (add
RenderContext to Window::PushPaintHelper, use Erase correctly,
2015-05-18), the problem was similar to tdf#92079, except here the
missing background was a solid color, not a bitmap.
Change-Id: I2221b3eabed84cf039cb8c3881442c9e23c6ec13
Reviewed-on: https://gerrit.libreoffice.org/78205
Reviewed-by: Miklos Vajna <vmiklos at collabora.com>
Tested-by: Jenkins
diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx
index 8bdbc5a3b79f..2d83e3074b63 100644
--- a/vcl/source/window/paint.cxx
+++ b/vcl/source/window/paint.cxx
@@ -298,7 +298,8 @@ void PaintHelper::DoPaint(const vcl::Region* pRegion)
// direct painting
Wallpaper aBackground = m_pWindow->GetBackground();
m_pWindow->ApplySettings(*m_pWindow);
- if (aBackground.IsBitmap())
+ // Restore lost bitmap or solid color background.
+ if (aBackground.IsBitmap() || aBackground.GetColor() != COL_TRANSPARENT)
m_pWindow->SetBackground(aBackground);
m_pWindow->PushPaintHelper(this, *m_pWindow);
m_pWindow->Paint(*m_pWindow, m_aPaintRect);
More information about the Libreoffice-commits
mailing list