diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-03-29 18:17:31 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-03-29 18:17:31 -0400 |
commit | 62d1b4cb96f87274d695a9c11a041c42cf59ddc1 (patch) | |
tree | f58d674fc314e9e0bd2a8141582d82b160b41b25 /sway/tree | |
parent | e5491bf4981934736b43e239404550c3b66bb1f4 (diff) | |
download | sway-62d1b4cb96f87274d695a9c11a041c42cf59ddc1.tar.xz |
fix container_get_in_direction name
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c index 5152e523..fb34573f 100644 --- a/sway/tree/layout.c +++ b/sway/tree/layout.c @@ -587,7 +587,7 @@ static struct sway_container *get_swayc_in_direction_under(struct sway_container } } -struct sway_container *get_swayc_in_direction(struct sway_container *container, struct sway_seat *seat, +struct sway_container *container_get_in_direction(struct sway_container *container, struct sway_seat *seat, enum movement_direction dir) { return get_swayc_in_direction_under(container, dir, seat, NULL); } |