aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/layout.c')
-rw-r--r--sway/tree/layout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index 59ad0b53..28775253 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -154,7 +154,7 @@ void container_move_to(struct sway_container *container,
154 || container_has_ancestor(container, destination)) { 154 || container_has_ancestor(container, destination)) {
155 return; 155 return;
156 } 156 }
157 if (container->is_floating) { 157 if (container_is_floating(container)) {
158 // TODO 158 // TODO
159 return; 159 return;
160 } 160 }
@@ -718,7 +718,7 @@ struct sway_container *container_get_in_direction(
718 enum movement_direction dir) { 718 enum movement_direction dir) {
719 struct sway_container *parent = container->parent; 719 struct sway_container *parent = container->parent;
720 720
721 if (container->is_floating) { 721 if (container_is_floating(container)) {
722 return NULL; 722 return NULL;
723 } 723 }
724 724