aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/layer_shell.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-04-03 18:47:04 -0400
committerLibravatar emersion <contact@emersion.fr>2018-04-03 18:47:04 -0400
commit5cd9457247146efe0bcbcae890968acb4716c667 (patch)
tree5fb274c371604a61d38a17e537fb00ad327bf5b6 /sway/desktop/layer_shell.c
parentMerge pull request #1713 from emersion/swaybg-hidpi (diff)
downloadsway-5cd9457247146efe0bcbcae890968acb4716c667.tar.gz
sway-5cd9457247146efe0bcbcae890968acb4716c667.tar.zst
sway-5cd9457247146efe0bcbcae890968acb4716c667.zip
Send enter event to layer shell surfaces
Diffstat (limited to 'sway/desktop/layer_shell.c')
-rw-r--r--sway/desktop/layer_shell.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 3c7b45f7..663ec7ba 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -278,6 +278,8 @@ static void handle_map(struct wl_listener *listener, void *data) {
278 sway_layer, map); 278 sway_layer, map);
279 struct sway_output *output = sway_layer->layer_surface->output->data; 279 struct sway_output *output = sway_layer->layer_surface->output->data;
280 wlr_output_damage_add_box(output->damage, &sway_layer->geo); 280 wlr_output_damage_add_box(output->damage, &sway_layer->geo);
281 wlr_surface_send_enter(sway_layer->layer_surface->surface,
282 sway_layer->layer_surface->output);
281} 283}
282 284
283static void handle_unmap(struct wl_listener *listener, void *data) { 285static void handle_unmap(struct wl_listener *listener, void *data) {