diff options
author | emersion <contact@emersion.fr> | 2018-08-08 13:49:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 13:49:00 +0100 |
commit | 89e176d3fbee3b7f35185dffa71ab42214eb1f3f (patch) | |
tree | 2aeea57d78619aad0476e53a422218b929718664 /sway/tree | |
parent | c8a8216629cd56a510255f6ead3eaba9508b6544 (diff) | |
parent | f5dc3ac09d6f44d51b5bb7f8f5ac863cd228afd8 (diff) | |
download | sway-89e176d3fbee3b7f35185dffa71ab42214eb1f3f.tar.xz |
Merge pull request #2436 from RyanDwyer/fix-floating-deco-focus
Fix focus when clicking floating decorations
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/container.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 4507655e..aecb2ac6 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -533,11 +533,10 @@ struct sway_container *container_parent(struct sway_container *container, return container; } -static struct sway_container *container_at_view(struct sway_container *swayc, - double lx, double ly, +static void surface_at_view(struct sway_container *swayc, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) { if (!sway_assert(swayc->type == C_VIEW, "Expected a view")) { - return NULL; + return; } struct sway_view *sview = swayc->sway_view; double view_sx = lx - sview->x; @@ -567,9 +566,7 @@ static struct sway_container *container_at_view(struct sway_container *swayc, *sx = _sx; *sy = _sy; *surface = _surface; - return swayc; } - return NULL; } /** @@ -682,7 +679,8 @@ struct sway_container *tiling_container_at( struct sway_container *con, double lx, double ly, struct wlr_surface **surface, double *sx, double *sy) { if (con->type == C_VIEW) { - return container_at_view(con, lx, ly, surface, sx, sy); + surface_at_view(con, lx, ly, surface, sx, sy); + return con; } if (!con->children->length) { return NULL; @@ -745,7 +743,7 @@ struct sway_container *container_at(struct sway_container *workspace, struct sway_container *focus = seat_get_focus_inactive(seat, &root_container); if (focus && focus->type == C_VIEW) { - container_at_view(focus, lx, ly, surface, sx, sy); + surface_at_view(focus, lx, ly, surface, sx, sy); if (*surface && surface_is_popup(*surface)) { return focus; } |