always send the event on a final configure even if there was no real move
This commit is contained in:
parent
7beec94a1f
commit
c9ba604668
1 changed files with 18 additions and 20 deletions
|
@ -1405,7 +1405,6 @@ void client_configure(Client *self, Corner anchor, int x, int y, int w, int h,
|
||||||
if (moved || resized)
|
if (moved || resized)
|
||||||
engine_frame_adjust_area(self->frame, moved, resized);
|
engine_frame_adjust_area(self->frame, moved, resized);
|
||||||
|
|
||||||
if (moved) {
|
|
||||||
if (!user || final) {
|
if (!user || final) {
|
||||||
XEvent event;
|
XEvent event;
|
||||||
event.type = ConfigureNotify;
|
event.type = ConfigureNotify;
|
||||||
|
@ -1428,7 +1427,6 @@ void client_configure(Client *self, Corner anchor, int x, int y, int w, int h,
|
||||||
FALSE, StructureNotifyMask, &event);
|
FALSE, StructureNotifyMask, &event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void client_fullscreen(Client *self, gboolean fs, gboolean savearea)
|
void client_fullscreen(Client *self, gboolean fs, gboolean savearea)
|
||||||
|
|
Loading…
Reference in a new issue