x11: Handle ConfigureRequest events in frames
Under strange timings, the GTK frames client may implicitly queue relayouts that end up disagreeing with the latest frame size as given by Mutter, this results in GTK calling XMoveWindow, and Mutter plain out ignoring the resulting XConfigureRequestEvent received.
This however makes GTK think there's pending resize operations, so at the next resize it will freeze the window, until enough resizes happened to thaw it again. This is seen as temporary loss of frame-sync ness (e.g. frozen frame, and other weird behavior).
In order to make GTK happy and balanced, reply to this XConfigureRequest, even if just to ignore it in a more polite way (we simply re-apply the size Mutter thinks the frame should have, not GTK), this results in the right amount of ConfigureNotify received on the frames client side, and the surface to be thawed more timely, while enforcing the size as managed by Mutter.
Closes: #2837 (closed)