diff options
author | emersion <[email protected]> | 2018-05-28 09:16:33 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2018-05-28 09:16:33 +0100 |
commit | 9d1049ae8d25eb78eb94dcf68aadad5eef6e4be1 (patch) | |
tree | c7d20de9d9a46293d7409d624372abf6f796e400 /sway/tree/layout.c | |
parent | cc1fc3b4a656a544254a80cf32a48d826e7946b2 (diff) | |
parent | 7c7d24600b3db2675b691ae6345ef3fefab03dbd (diff) |
Merge pull request #2059 from RyanDwyer/ancestor-typo
Fix ancestor typos
Diffstat (limited to 'sway/tree/layout.c')
-rw-r--r-- | sway/tree/layout.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c index 624d5516..aca9e254 100644 --- a/sway/tree/layout.c +++ b/sway/tree/layout.c @@ -157,7 +157,7 @@ struct sway_container *container_remove_child(struct sway_container *child) { void container_move_to(struct sway_container *container, struct sway_container *destination) { if (container == destination - || container_has_anscestor(container, destination)) { + || container_has_ancestor(container, destination)) { return; } struct sway_container *old_parent = container_remove_child(container); @@ -945,9 +945,9 @@ void container_swap(struct sway_container *con1, struct sway_container *con2) { "Can only swap containers and views")) { return; } - if (!sway_assert(!container_has_anscestor(con1, con2) - && !container_has_anscestor(con2, con1), - "Cannot swap anscestor and descendant")) { + if (!sway_assert(!container_has_ancestor(con1, con2) + && !container_has_ancestor(con2, con1), + "Cannot swap ancestor and descendant")) { return; } if (!sway_assert(con1->layout != L_FLOATING && con2->layout != L_FLOATING, |