From d5659948f1105b99d08542de7c370ba908b8cec8 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Mon, 19 Sep 2022 23:20:02 +0200 Subject: allow pointer_constraints on layer_shell surfaces --- sway/input/seat.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'sway/input/seat.c') diff --git a/sway/input/seat.c b/sway/input/seat.c index b21e1b86..6abb54e8 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -1462,6 +1462,18 @@ struct sway_node *seat_get_focus(struct sway_seat *seat) { return current->node; } +struct wlr_surface *seat_get_focused_surface(struct sway_seat *seat) { + struct sway_node *focus = seat_get_focus(seat); + if (focus && node_is_view(focus)) { + return focus->sway_container->view->surface; + } + struct sway_seat_node *current = wl_container_of(seat->focus_stack.next, current, link); + struct wlr_layer_surface_v1 *layer = current->seat->focused_layer; + if (layer && layer->surface) + return layer->surface; + return NULL; +} + struct sway_workspace *seat_get_focused_workspace(struct sway_seat *seat) { struct sway_node *focus = seat_get_focus_inactive(seat, &root->node); if (!focus) { -- cgit v1.2.3-54-g00ecf