Fix crash when moving window to scratchpad

This commit is contained in:
minus 2019-03-09 11:06:09 +01:00 committed by Drew DeVault
parent 7d8083c16a
commit e28163249f
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}