mirror of
https://github.com/swaywm/sway.git
synced 2025-11-05 13:29:51 -05:00
Fix ancestor typos
This commit is contained in:
parent
b2c0ba5b18
commit
7c7d24600b
5 changed files with 12 additions and 12 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue