From 8b6bd106aa92192e9e2aa6781e9b2e51f1e22fe2 Mon Sep 17 00:00:00 2001 From: emersion Date: Wed, 6 Mar 2019 10:47:50 +0100 Subject: [PATCH] Fix container_parent_layout for scratchpad windows --- sway/tree/container.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sway/tree/container.c b/sway/tree/container.c index 330439411..a6142193f 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -1163,7 +1163,10 @@ enum sway_container_layout container_parent_layout(struct sway_container *con) { if (con->parent) { return con->parent->layout; } - return con->workspace->layout; + if (con->workspace) { + return con->workspace->layout; + } + return L_NONE; } enum sway_container_layout container_current_parent_layout(