From 0d84c43d2a02acf5d2f0159e8cf54fe85f3755cc Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 24 Mar 2003 19:59:46 +0000 Subject: [PATCH] only configure the engine if something changed --- openbox/client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index b717b914..bebd8949 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1390,7 +1390,8 @@ void client_configure(Client *self, Corner anchor, int x, int y, int w, int h, /* move/resize the frame to match the request */ if (self->frame) { - engine_frame_adjust_area(self->frame, moved, resized); + if (moved || resized) + engine_frame_adjust_area(self->frame, moved, resized); if (moved) { if (!user || final) { -- 2.39.2