check for null pointer when getting gaps

This commit is contained in:
Alex Janka 2024-08-02 09:43:42 +10:00
parent e7a847d933
commit b7d2d56263

View file

@ -350,7 +350,12 @@ static struct sway_container *view_container_at(struct sway_node *parent,
} }
struct sway_container *container = parent->sway_container; struct sway_container *container = parent->sway_container;
int gaps = container->current.workspace->gaps_inner;
int gaps = 0;
if (container->current.workspace) {
gaps = container->current.workspace->gaps_inner;
}
struct wlr_box box = { struct wlr_box box = {
.x = container->pending.x - (gaps / 2), .x = container->pending.x - (gaps / 2),
.y = container->pending.y - (gaps / 2), .y = container->pending.y - (gaps / 2),