Revert "Don't apply exclusive zones of unmapped layer-shell surfaces"

This reverts commit e1eda8a09c.
This commit is contained in:
Brian Ashworth 2020-02-24 21:18:51 -05:00 committed by Simon Ser
parent e1eda8a09c
commit e0f8235fbf

View file

@ -88,8 +88,7 @@ static void arrange_layer(struct sway_output *output, struct wl_list *list,
wl_list_for_each(sway_layer, list, link) { wl_list_for_each(sway_layer, list, link) {
struct wlr_layer_surface_v1 *layer = sway_layer->layer_surface; struct wlr_layer_surface_v1 *layer = sway_layer->layer_surface;
struct wlr_layer_surface_v1_state *state = &layer->current; struct wlr_layer_surface_v1_state *state = &layer->current;
if (!layer->mapped || if (exclusive != (state->exclusive_zone > 0)) {
exclusive != (state->exclusive_zone > 0)) {
continue; continue;
} }
struct wlr_box bounds; struct wlr_box bounds;