aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/debug-tree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/debug-tree.c b/sway/debug-tree.c
index 5af5b565..f3465afe 100644
--- a/sway/debug-tree.c
+++ b/sway/debug-tree.c
@@ -22,10 +22,12 @@ static const char *layout_to_str(enum sway_container_layout layout) {
22 return "L_STACKED"; 22 return "L_STACKED";
23 case L_TABBED: 23 case L_TABBED:
24 return "L_TABBED"; 24 return "L_TABBED";
25 case L_FLOATING:
26 return "L_FLOATING";
25 case L_NONE: 27 case L_NONE:
26 default:
27 return "L_NONE"; 28 return "L_NONE";
28 } 29 }
30 return "L_NONE";
29} 31}
30 32
31static int draw_container(cairo_t *cairo, struct sway_container *container, 33static int draw_container(cairo_t *cairo, struct sway_container *container,