stop unmapping the plate window. that was just a coincidence that it fixed the libwnck stuff
This commit is contained in:
parent
37aaf4c1e4
commit
70fc99f90e
1 changed files with 0 additions and 5 deletions
|
@ -251,7 +251,6 @@ void frame_show(ObFrame *self)
|
||||||
if (!self->visible) {
|
if (!self->visible) {
|
||||||
self->visible = TRUE;
|
self->visible = TRUE;
|
||||||
XMapWindow(ob_display, self->client->window);
|
XMapWindow(ob_display, self->client->window);
|
||||||
XMapWindow(ob_display, self->plate);
|
|
||||||
XMapWindow(ob_display, self->window);
|
XMapWindow(ob_display, self->window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -262,10 +261,6 @@ void frame_hide(ObFrame *self)
|
||||||
self->visible = FALSE;
|
self->visible = FALSE;
|
||||||
if (!frame_iconify_animating(self))
|
if (!frame_iconify_animating(self))
|
||||||
XUnmapWindow(ob_display, self->window);
|
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
|
/* we unmap the client itself so that we can get MapRequest
|
||||||
events, and because the ICCCM tells us to! */
|
events, and because the ICCCM tells us to! */
|
||||||
XUnmapWindow(ob_display, self->client->window);
|
XUnmapWindow(ob_display, self->client->window);
|
||||||
|
|
Loading…
Reference in a new issue