~ruther/dwl

28ec843aee3d339ef0b5b95685cdd7c2bcacdb16 — Leonardo Hernández Hernández 1 year, 6 months ago 2b3504e
make sure popups of a layer surface are in the correct layer

previously it worked because we checked in every commit the layer
in a353eee2cac0378a4201e408a3417aa107a7f647 and
b100b446b8c82bc2dcdbb40856ab87ed4a4ad594
we changed the way it's handled and now if the layer surface does not change
the layer we don't it either. meaning that if it was created in the bottom
layer and did not change the layer the popups would show behind xdg clients
1 files changed, 2 insertions(+), 1 deletions(-)

M dwl.c
M dwl.c => dwl.c +2 -1
@@ 814,7 814,8 @@ createlayersurface(struct wl_listener *listener, void *data)
	l->mon = layer_surface->output->data;
	l->scene_layer = wlr_scene_layer_surface_v1_create(scene_layer, layer_surface);
	l->scene = l->scene_layer->tree;
	l->popups = surface->data = wlr_scene_tree_create(scene_layer);
	l->popups = surface->data = wlr_scene_tree_create(layer_surface->current.layer
			< ZWLR_LAYER_SHELL_V1_LAYER_TOP ? layers[LyrTop] : scene_layer);
	l->scene->node.data = l;



Do not follow this link