summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-14 01:06:42 +0000
committerDana Jansens <danakj@orodu.net>2007-05-14 01:06:42 +0000
commit9d7608789c81d950e0f8528e24e684daa2d81790 (patch)
tree6da702563d2d94c12b7e5f200769a15220796769 /openbox/client.c
parent53e75c5be435b8af86ba2de3dedb59ad4f74e6d9 (diff)
another little focus cleanup/rearrangement, for focus going to windows that
are no longer there.
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 5ac18700..b61787bc 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -525,7 +525,8 @@ void client_manage(Window window)
/* update the list hints */
client_set_list();
- ob_debug("Managed window 0x%lx (%s)\n", window, self->class);
+ ob_debug("Managed window 0x%lx plate 0x%x (%s)\n",
+ window, self->frame->plate, self->class);
return;
}
@@ -567,7 +568,8 @@ void client_unmanage(ObClient *self)
guint j;
GSList *it;
- ob_debug("Unmanaging window: %lx (%s) (%s)\n", self->window,
+ ob_debug("Unmanaging window: 0x%x plate 0x%x (%s) (%s)\n",
+ self->window, self->frame->plate,
self->class, self->title ? self->title : "");
g_assert(self != NULL);