From 6142eb3a48c78de29d0bce1d3ee5686f1bbf7ef9 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 18 May 2007 15:20:03 +0000 Subject: [PATCH] when done iconify animating, send a configure notify (this fixes kde's pager showing the window in the wrong place) --- openbox/frame.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.39.2