mirror of
https://github.com/NickHu/sway
synced 2024-12-27 21:58:11 +01:00
Add assertion in container_at_view
This commit is contained in:
parent
c08f9bf257
commit
bd79584f65
1 changed files with 3 additions and 0 deletions
|
@ -455,6 +455,9 @@ struct sway_container *container_parent(struct sway_container *container,
|
|||
static struct sway_container *container_at_view(struct sway_container *swayc,
|
||||
double ox, double oy,
|
||||
struct wlr_surface **surface, double *sx, double *sy) {
|
||||
if (!sway_assert(swayc->type == C_VIEW, "Expected a view")) {
|
||||
return NULL;
|
||||
}
|
||||
struct sway_view *sview = swayc->sway_view;
|
||||
double view_sx = ox - sview->x;
|
||||
double view_sy = oy - sview->y;
|
||||
|
|
Loading…
Reference in a new issue