aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-08-08 22:14:11 +1000
committerRyan Dwyer <ryandwyer1@gmail.com>2018-08-08 22:28:13 +1000
commita0ece6f95620674514da633584ebdadabf5b4072 (patch)
treeb1884adab12286ff5c4d482fcfbe68d87313f5fe /sway/tree
parent1e984fec05c7b63fa65a9b11b77a2c2f639bfc73 (diff)
Rename container_at_view to surface_at_view and make it return void
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/container.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 39df86a5..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;
@@ -568,7 +567,6 @@ static struct sway_container *container_at_view(struct sway_container *swayc,
*sy = _sy;
*surface = _surface;
}
- return swayc;
}
/**
@@ -681,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;
@@ -744,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;
}