excessive debug printing.. :)
authorDana Jansens <danakj@orodu.net>
Thu, 12 Apr 2007 02:26:41 +0000 (02:26 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 12 Apr 2007 02:26:41 +0000 (02:26 +0000)
openbox/frame.c

index 880ab1b..554e7b5 100644 (file)
@@ -234,8 +234,6 @@ static void frame_free(ObFrame *self)
 
 void frame_show(ObFrame *self)
 {
-    ob_debug("frame_show for window 0x%x : %d\n", self->client->window,
-             self->visible);
     if (!self->visible) {
         self->visible = TRUE;
         XMapWindow(ob_display, self->client->window);
@@ -245,8 +243,6 @@ void frame_show(ObFrame *self)
 
 void frame_hide(ObFrame *self)
 {
-    ob_debug("frame_hide for window 0x%x : %d\n", self->client->window,
-             self->visible);
     if (self->visible) {
         self->visible = FALSE;
         self->client->ignore_unmaps += 1;