From 77719858b077d3d1880955c7e1a5557f3600a62a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Tue, 30 Jan 2007 16:52:05 +0000 Subject: [PATCH] Damage also the old area on geometry changes. svn path=/branches/work/kwin_composite/; revision=628608 --- events.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/events.cpp b/events.cpp index 778904715e..07822653dd 100644 --- a/events.cpp +++ b/events.cpp @@ -1644,6 +1644,7 @@ void Unmanaged::configureNotifyEvent( XConfigureEvent* e ) QRect newgeom( e->x, e->y, e->width, e->height ); if( newgeom == geom ) return; + workspace()->addDamage( geometry()); // damage old area geom = newgeom; if( scene != NULL ) scene->windowGeometryShapeChanged( this );