From 76cf2ec33fac8cd4dbd5d87b9bf78373c2c09723 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Thu, 9 Feb 2006 12:42:08 +0000 Subject: [PATCH] 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 --- src/servers/app/ViewLayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/servers/app/ViewLayer.cpp b/src/servers/app/ViewLayer.cpp index a34482c0c2..beb445409f 100644 --- a/src/servers/app/ViewLayer.cpp +++ b/src/servers/app/ViewLayer.cpp @@ -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();