]> Dogcows Code - chaz/openbox/commitdiff
We were grabbing SubstructureNotifyMask on the root window. I don't know why.. It...
authorDana Jansens <danakj@orodu.net>
Sun, 11 Mar 2007 22:16:42 +0000 (22:16 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 11 Mar 2007 22:16:42 +0000 (22:16 +0000)
openbox/client.c
openbox/screen.c

index 02141af45f749a03fe15164485e2a316c1abac86..c59baf96905d7d04036ed6b632b7b98b91ba0b7f 100644 (file)
@@ -2,7 +2,7 @@
    
    client.c for the Openbox window manager
    Copyright (c) 2006        Mikael Magnusson
-   Copyright (c) 2003        Ben Jansens
+   Copyright (c) 2003-2007   Dana Jansens
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -2004,8 +2004,6 @@ static void client_calc_layer_recursive(ObClient *self, ObClient *orig,
     own = calc_layer(self);
     self->layer = MAX(own, min);
 
-    ob_debug("layer for %s: %d\n", self->title, self->layer);
-
     for (it = self->transients; it; it = g_slist_next(it))
         client_calc_layer_recursive(it->data, orig,
                                     self->layer,
index 3542dfdc3a76512f3c6de1274da386fab5ae959f..053757f7dde50258620ffec400dd0a14237549a8 100644 (file)
@@ -2,7 +2,7 @@
 
    screen.c for the Openbox window manager
    Copyright (c) 2006        Mikael Magnusson
-   Copyright (c) 2003        Ben Jansens
+   Copyright (c) 2003-2007   Dana Jansens
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@
 /*! The event mask to grab on the root window */
 #define ROOT_EVENTMASK (StructureNotifyMask | PropertyChangeMask | \
                         EnterWindowMask | LeaveWindowMask | \
-                        SubstructureNotifyMask | SubstructureRedirectMask | \
+                        SubstructureRedirectMask | \
                         ButtonPressMask | ButtonReleaseMask | ButtonMotionMask)
 
 guint    screen_num_desktops;
This page took 0.030467 seconds and 4 git commands to generate.