From: Dana Jansens Date: Fri, 18 May 2007 15:20:03 +0000 (+0000) Subject: when done iconify animating, send a configure notify (this fixes kde's pager showing... X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=6142eb3a48c78de29d0bce1d3ee5686f1bbf7ef9;p=chaz%2Fopenbox when done iconify animating, send a configure notify (this fixes kde's pager showing the window in the wrong place) --- diff --git a/openbox/frame.c b/openbox/frame.c index 8809e627..29933d69 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -1169,6 +1169,10 @@ void frame_end_iconify_animation(ObFrame *self) if (!self->visible) XUnmapWindow(ob_display, self->window); + 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;