layer-shell: check `committed` bitmask

This avoids infinite configure-ack_configure-commit loop.
master
Kirill Primak 3 years ago committed by Simon Ser
parent b7b3ef6dcf
commit c11b5db4d6

@ -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;

Loading…
Cancel
Save