diff options
author | minus <minus@mnus.de> | 2019-03-09 11:06:09 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-03-09 11:21:41 +0100 |
commit | 5fab8a2ad4c05fb7bfdbb45915b8abf7ebeab5fe (patch) | |
tree | e5cd5ad4270ab12fbd148b0fe86aff4ab99a929b /sway/ipc-json.c | |
parent | 1a9145e40983aa84da0e08ec3806b6e6fc8983f8 (diff) |
Fix crash when moving window to scratchpad
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r-- | sway/ipc-json.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c index e9564b04..bebe6dd7 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -354,7 +354,8 @@ static void get_deco_rect(struct sway_container *c, struct wlr_box *deco_rect) { enum sway_container_layout parent_layout = container_parent_layout(c); if ((parent_layout != L_TABBED && parent_layout != L_STACKED && c->current.border != B_NORMAL) || - c->fullscreen_mode != FULLSCREEN_NONE) { + c->fullscreen_mode != FULLSCREEN_NONE || + c->workspace == NULL) { deco_rect->x = deco_rect->y = deco_rect->width = deco_rect->height = 0; return; } |