Gee, map also the child X window. Qt makes some things way too simple.

svn path=/branches/work/kwin_composite/; revision=604018
This commit is contained in:
Luboš Luňák 2006-11-11 09:05:45 +00:00
parent 60d343f1d7
commit a222c2a675

View file

@ -228,6 +228,7 @@ void Workspace::setupOverlay( Window w )
assert( overlay != None ); assert( overlay != None );
XShapeCombineRectangles( display(), overlay, ShapeInput, 0, 0, NULL, 0, ShapeSet, Unsorted ); XShapeCombineRectangles( display(), overlay, ShapeInput, 0, 0, NULL, 0, ShapeSet, Unsorted );
XShapeCombineRectangles( display(), w, ShapeInput, 0, 0, NULL, 0, ShapeSet, Unsorted ); XShapeCombineRectangles( display(), w, ShapeInput, 0, 0, NULL, 0, ShapeSet, Unsorted );
XMapWindow( display(), w );
XMapRaised( display(), overlay ); XMapRaised( display(), overlay );
} }