aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index bcc525ad..20dcafb1 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -352,8 +352,9 @@ static void ipc_json_describe_workspace(struct sway_workspace *workspace,
352 352
353static void get_deco_rect(struct sway_container *c, struct wlr_box *deco_rect) { 353static void get_deco_rect(struct sway_container *c, struct wlr_box *deco_rect) {
354 enum sway_container_layout parent_layout = container_parent_layout(c); 354 enum sway_container_layout parent_layout = container_parent_layout(c);
355 if (parent_layout != L_TABBED && parent_layout != L_STACKED && 355 if ((parent_layout != L_TABBED && parent_layout != L_STACKED &&
356 c->current.border != B_NORMAL) { 356 c->current.border != B_NORMAL) ||
357 c->fullscreen_mode != FULLSCREEN_NONE) {
357 deco_rect->x = deco_rect->y = deco_rect->width = deco_rect->height = 0; 358 deco_rect->x = deco_rect->y = deco_rect->width = deco_rect->height = 0;
358 return; 359 return;
359 } 360 }