Skip to content

backend/{x11, wayland}: commit new custom mode on window configure

Fixes: #3418 (closed)

From my understanding this is how backends acknowledge new modes: the compositor uses wlr_output_set_mode which will set WLR_OUTPUT_STATE_MODE. The backend will respond to this commit event and then use wlr_output_update_mode. Unfortunately if either the x11 or wayland backends get configured (resized) they will skip the commit part and jump straight to updating the sizes. Fix this my making the configures go through a commit first.

Merge request reports