From 15e6775b0c17220b81456188757362d131a436c8 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 13 Jun 2007 15:57:46 +0000 Subject: [PATCH] only send configurenotify for user-action configures when it moves --- openbox/client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index ae2a9986..92f7a4bb 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2946,7 +2946,8 @@ void client_configure(ObClient *self, gint x, gint y, gint w, gint h, this. So just to appease Swing, when user = TRUE, we always send a synthetic ConfigureNotify to give the window its root coordinates. */ - if ((!user && !resized && (rootmoved || force_reply)) || (user && final)) + if ((!user && !resized && (rootmoved || force_reply)) || + (user && final && rootmoved)) { XEvent event; -- 2.39.2