1
Index: compiz-0.9.4+bzr20110411/src/event.cpp
2
===================================================================
3
--- compiz-0.9.4+bzr20110411.orig/src/event.cpp 2011-04-11 13:20:13.147881497 +0200
4
+++ compiz-0.9.4+bzr20110411/src/event.cpp 2011-04-11 13:20:50.696067682 +0200
6
if (!XGetWindowAttributes (priv->dpy, event->xcreatewindow.window, &wa))
7
priv->setDefaultWindowAttributes (&wa);
9
- fprintf (stderr, "Window 0x%x created on ReparentNotify, map state isViewable? %i\n", event->xreparent.window, wa.map_state == IsViewable);
11
CoreWindow *cw = new CoreWindow (event->xcreatewindow.window);
12
cw->manage (priv->getTopWindow (), wa);
14
Index: compiz-0.9.4+bzr20110411/src/screen.cpp
15
===================================================================
16
--- compiz-0.9.4+bzr20110411.orig/src/screen.cpp 2011-04-11 13:20:25.683943655 +0200
17
+++ compiz-0.9.4+bzr20110411/src/screen.cpp 2011-04-11 13:20:42.284025978 +0200
19
if (!XGetWindowAttributes (screen->dpy (), children[i], &attrib))
20
priv->setDefaultWindowAttributes (&attrib);
22
- fprintf (stderr, "Window created on XQueryTree, map state isViewable? %i\n", attrib.map_state == IsViewable);
24
CoreWindow *cw = new CoreWindow (children[i]);
25
cw->manage (i ? children[i - 1] : 0, attrib);