remove debug print

This commit is contained in:
Dana Jansens 2003-09-26 04:10:17 +00:00
parent 40d58a1e34
commit 7dc01bbee7

View file

@ -1310,16 +1310,14 @@ void client_update_wmhints(ObClient *self)
/* the WM_HINTS can contain an icon */
client_update_icons(self);
XFree(hints);
XFree(hints);
}
if (ur != self->urgent) {
self->urgent = ur;
ob_debug("Urgent Hint for 0x%lx: %s\n", self->window,
ur ? "ON" : "OFF");
/* fire the urgent callback if we're mapped, otherwise, wait until
after we're mapped */
if (self->frame)
self->urgent = ur;
/* fire the urgent callback if we're mapped, otherwise, wait until
after we're mapped */
if (self->frame)
client_urgent_notify(self);
}
}