Kaydet (Commit) 548ed2c3 authored tarafından Miklos Vajna's avatar Miklos Vajna

SwViewShell::InvalidateWindows: when tiled rendering, ignore visual area

Change-Id: I9b40a32e08f4472b75a236e2720ecbe5927117fb
üst 6263bcfd
......@@ -543,7 +543,9 @@ void SwViewShell::InvalidateWindows( const SwRect &rRect )
{
if ( rSh.IsPreview() )
::RepaintPagePreview( &rSh, rRect );
else if ( rSh.VisArea().IsOver( rRect ) )
// In case of tiled rendering, invalidation is wanted even if
// the rectangle is outside the visual area.
else if ( rSh.VisArea().IsOver( rRect ) || rSh.isTiledRendering() )
rSh.GetWin()->Invalidate( rRect.SVRect() );
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment