summaryrefslogtreecommitdiff
path: root/openbox/frame.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-04-12 02:26:41 +0000
committerDana Jansens <danakj@orodu.net>2007-04-12 02:26:41 +0000
commitfda5ddfe1624e8f9506a0830afdc35bb7bc880e7 (patch)
tree0b366199b72425b8fcfbf7cd1f466f44c4208c5d /openbox/frame.c
parentc03c08415f01a52584158aa4f0356f3a0d7a46aa (diff)
excessive debug printing.. :)
Diffstat (limited to 'openbox/frame.c')
-rw-r--r--openbox/frame.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/openbox/frame.c b/openbox/frame.c
index 880ab1b5..554e7b55 100644
--- a/openbox/frame.c
+++ b/openbox/frame.c
@@ -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;