diff --git a/sway/desktop/render.c b/sway/desktop/render.c index 2e66abd4..43a12046 100644 --- a/sway/desktop/render.c +++ b/sway/desktop/render.c @@ -339,7 +339,7 @@ static void render_view(struct sway_output *output, pixman_region32_t *damage, container_current_parent_layout(con); if (state->border_right) { - if (siblings->length == 1 && layout == L_HORIZ) { + if (con->current.parent && siblings->length == 1 && layout == L_HORIZ) { memcpy(&color, colors->indicator, sizeof(float) * 4); } else { memcpy(&color, colors->child_border, sizeof(float) * 4); @@ -354,7 +354,7 @@ static void render_view(struct sway_output *output, pixman_region32_t *damage, } if (state->border_bottom) { - if (siblings->length == 1 && layout == L_VERT) { + if (con->current.parent && siblings->length == 1 && layout == L_VERT) { memcpy(&color, colors->indicator, sizeof(float) * 4); } else { memcpy(&color, colors->child_border, sizeof(float) * 4);