turn off the blitting based MoveBy version, until it works better. The problem is that resizing views with children can invalidate parts which could still be copied by blitting when the child is moved because of FOLLOW modes. Or the problem is only with views that are moved and resized at the same time. I will find out later...

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16309 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2006-02-09 12:42:08 +00:00
parent b5182fe099
commit 76cf2ec33f
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ ViewLayer::MoveBy(int32 x, int32 y, BRegion* dirtyRegion)
// to move on screen, we must not be hidden and we must have a parent
if (fVisible && fParent && dirtyRegion) {
#if 0
#if 1
// based on redraw on new location
// the place were we are now visible
BRect newVisibleBounds = Bounds();