always send the event on a final configure even if there was no real move

This commit is contained in:
Dana Jansens 2003-03-24 20:09:31 +00:00
parent 7beec94a1f
commit c9ba604668

View file

@ -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;
@ -1429,7 +1428,6 @@ void client_configure(Client *self, Corner anchor, int x, int y, int w, int h,
} }
} }
} }
}
void client_fullscreen(Client *self, gboolean fs, gboolean savearea) void client_fullscreen(Client *self, gboolean fs, gboolean savearea)
{ {