only configure the engine if something changed
This commit is contained in:
parent
3fb9753fa4
commit
0d84c43d2a
1 changed files with 2 additions and 1 deletions
|
@ -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 */
|
/* move/resize the frame to match the request */
|
||||||
if (self->frame) {
|
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 (moved) {
|
||||||
if (!user || final) {
|
if (!user || final) {
|
||||||
|
|
Loading…
Reference in a new issue