X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fframe.c;h=c30415ddef7f272acf5663685ae76674ac784d76;hb=ef8bd3947da3816eb365d64042a9c9d49e1b9b98;hp=8ce2a16d9bbaa4e194e637704c68b4629304ca7a;hpb=d3c22b58cba15c9420a9c09225c4ba5c66edfa23;p=chaz%2Fopenbox diff --git a/openbox/frame.c b/openbox/frame.c index 8ce2a16d..c30415dd 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -1630,10 +1630,11 @@ void frame_end_iconify_animation(ObFrame *self) if (!self->visible) XUnmapWindow(ob_display, self->window); - else + else { /* Send a ConfigureNotify when the animation is done, this fixes KDE's pager showing the window in the wrong place. */ client_reconfigure(self->client); + } /* we're not animating any more ! */ self->iconify_animation_going = 0; @@ -1641,6 +1642,8 @@ void frame_end_iconify_animation(ObFrame *self) XMoveResizeWindow(ob_display, self->window, self->area.x, self->area.y, self->area.width, self->area.height); + /* we delay re-rendering until after we're done animating */ + framerender_frame(self); XFlush(ob_display); }