1
1
mirror of https://github.com/swaywm/sway synced 2024-09-22 09:20:42 +02:00

layer-shell: check committed bitmask

This avoids infinite configure-ack_configure-commit loop.
This commit is contained in:
Kirill Primak 2021-09-24 08:09:15 +03:00 committed by Simon Ser
parent b7b3ef6dcf
commit c11b5db4d6

View File

@ -297,6 +297,10 @@ static void handle_surface_commit(struct wl_listener *listener, void *data) {
if (wlr_output == NULL) {
return;
}
if (layer_surface->current.committed == 0) {
// The layer surface state didn't change
return;
}
struct sway_output *output = wlr_output->data;
struct wlr_box old_extent = layer->extent;