From f7539b9d142c8945e37436a346a31d507416d2ea Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 3 Apr 2018 20:18:04 -0400 Subject: [PATCH] rootston: send enter event for layer surfaces --- rootston/layer_shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/rootston/layer_shell.c b/rootston/layer_shell.c index 1cd93b3c..9794071b 100644 --- a/rootston/layer_shell.c +++ b/rootston/layer_shell.c @@ -281,6 +281,7 @@ static void handle_map(struct wl_listener *listener, void *data) { struct wlr_output *wlr_output = layer_surface->output; struct roots_output *output = wlr_output->data; wlr_output_damage_add_box(output->damage, &layer->geo); + wlr_surface_send_enter(layer_surface->surface, wlr_output); } static void handle_unmap(struct wl_listener *listener, void *data) {