diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2021-10-05 14:30:44 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2021-10-05 22:01:48 +0200 |
commit | 057968bbce406efe6564347329df45b7e0f823ce (patch) | |
tree | ede612de5438d41595053af4c0fe226c1810ec95 /vcl | |
parent | 0a78cb8eb1ebbfe55896d603e8aa94816242c2cb (diff) |
do not block out PaintImmediately() in LOK mode
I'm not sure why I did this when disabling LOK idle painting, even
if a window is not to be painted to, it still needs at least
invalidating.
Change-Id: Iaed6b1071d05d05d6bf5195f3803afb1fc018508
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123097
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/paint.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx index 291b82094c46..1c983ff7b37a 100644 --- a/vcl/source/window/paint.cxx +++ b/vcl/source/window/paint.cxx @@ -595,7 +595,8 @@ void Window::ImplCallPaint(const vcl::Region* pRegion, ImplPaintFlags nPaintFlag if (!mpWindowImpl->mpFirstChild) mpWindowImpl->mnPaintFlags &= ~ImplPaintFlags::PaintAllChildren; - if (mpWindowImpl->mbPaintDisabled) + // If tiled rendering is used, windows are only invalidated, never painted to. + if (mpWindowImpl->mbPaintDisabled || comphelper::LibreOfficeKit::isActive()) { if (mpWindowImpl->mnPaintFlags & ImplPaintFlags::PaintAll) Invalidate(InvalidateFlags::NoChildren | InvalidateFlags::NoErase | InvalidateFlags::NoTransparent | InvalidateFlags::NoClipChildren); @@ -1293,12 +1294,6 @@ void Window::PaintImmediately() if (!mpWindowImpl) return; - if (comphelper::LibreOfficeKit::isActive()) - { - // Tiled rendering is used, direct paint does not need to do anything. - return; - } - if ( mpWindowImpl->mpBorderWindow ) { mpWindowImpl->mpBorderWindow->PaintImmediately(); |