[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-5' - editeng/source
Caolán McNamara
caolanm at redhat.com
Tue Feb 2 22:22:40 UTC 2016
editeng/source/editeng/impedit3.cxx | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
New commits:
commit 1d5a1f06c33bea1dd05fa6b03a02dce178578980
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Feb 2 11:50:51 2016 +0000
Resolves: tdf#97375 use Invalidate in all modes
makes the crash/hangs go away
(cherry picked from commit ab5c427784fb72d52042b8122ffc5a0fd7108c6b)
(cherry picked from commit c3f09ae629b349c52a4a7954e3017ceb8d7afeaf)
Change-Id: I91a4391190ec7aa0ffa5e41a8c1eb86b4bb9c484
Reviewed-on: https://gerrit.libreoffice.org/22026
Reviewed-by: Michael Stahl <mstahl at redhat.com>
Tested-by: Michael Stahl <mstahl at redhat.com>
(cherry picked from commit 1b49e14c82af691fe1ec5aa5de8392350bce11a1)
Reviewed-on: https://gerrit.libreoffice.org/22056
Reviewed-by: David Ostrovsky <david at ostrovsky.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Tested-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
diff --git a/editeng/source/editeng/impedit3.cxx b/editeng/source/editeng/impedit3.cxx
index fb071e0..98e3d51 100644
--- a/editeng/source/editeng/impedit3.cxx
+++ b/editeng/source/editeng/impedit3.cxx
@@ -289,12 +289,7 @@ void ImpEditEngine::UpdateViews( EditView* pCurView )
{
// convert to window coordinates ....
aClipRect = pView->pImpEditView->GetWindowPos( aClipRect );
-
- // For tiled rendering, we have to always go via Invalidate().
- if ( pView == pCurView && !pView->isTiledRendering())
- Paint( pView->pImpEditView, aClipRect, 0, true );
- else
- pView->GetWindow()->Invalidate( aClipRect );
+ pView->GetWindow()->Invalidate( aClipRect );
}
}
More information about the Libreoffice-commits
mailing list