diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-24 21:49:32 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-24 21:49:32 +0000 |
| commit | 70fc99f90eac59498e603a38cdb583e9f4536cba (patch) | |
| tree | a5b336b8cc24bdd759d85b871992820662ddf605 /openbox | |
| parent | 37aaf4c1e44c205ccbe9ddb7f7633afdcf57fa0f (diff) | |
stop unmapping the plate window. that was just a coincidence that it fixed the libwnck stuff
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/frame.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/openbox/frame.c b/openbox/frame.c index 37e39e2e..5834041d 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -251,7 +251,6 @@ void frame_show(ObFrame *self) if (!self->visible) { self->visible = TRUE; XMapWindow(ob_display, self->client->window); - XMapWindow(ob_display, self->plate); XMapWindow(ob_display, self->window); } } @@ -262,10 +261,6 @@ void frame_hide(ObFrame *self) self->visible = FALSE; if (!frame_iconify_animating(self)) XUnmapWindow(ob_display, self->window); - /* unmap the plate along with the client. some people (libwnck) look - to see if it is unmapped when the client is iconified, for whatever - reason. so let's play along... */ - XUnmapWindow(ob_display, self->plate); /* we unmap the client itself so that we can get MapRequest events, and because the ICCCM tells us to! */ XUnmapWindow(ob_display, self->client->window); |
