From: Dana Jansens Date: Mon, 24 Mar 2003 19:59:46 +0000 (+0000) Subject: only configure the engine if something changed X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=0d84c43d2a02acf5d2f0159e8cf54fe85f3755cc;p=chaz%2Fopenbox only configure the engine if something changed --- 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) {