sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5cd9457247146efe0bcbcae890968acb4716c667
parent 843e16847b36a6cf4f685d9dae5133f7f9b37030
Author: emersion <contact@emersion.fr>
Date:   Tue,  3 Apr 2018 18:47:04 -0400

Send enter event to layer shell surfaces

Diffstat:
Msway/desktop/layer_shell.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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) { sway_layer, map); struct sway_output *output = sway_layer->layer_surface->output->data; wlr_output_damage_add_box(output->damage, &sway_layer->geo); + wlr_surface_send_enter(sway_layer->layer_surface->surface, + sway_layer->layer_surface->output); } static void handle_unmap(struct wl_listener *listener, void *data) {