aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/container.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index ccd79f0e..ebc60027 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -218,7 +218,7 @@ static struct sway_container *container_at_tabbed(struct sway_node *parent,
218 218
219 // Surfaces 219 // Surfaces
220 struct sway_node *current = seat_get_active_child(seat, parent); 220 struct sway_node *current = seat_get_active_child(seat, parent);
221 return tiling_container_at(current, lx, ly, surface, sx, sy); 221 return current ? tiling_container_at(current, lx, ly, surface, sx, sy) : NULL;
222} 222}
223 223
224/** 224/**