diff options
Diffstat (limited to 'sway')
-rw-r--r-- | sway/debug-tree.c | 4 |
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) { return "L_STACKED"; case L_TABBED: return "L_TABBED"; + case L_FLOATING: + return "L_FLOATING"; case L_NONE: - default: return "L_NONE"; } + return "L_NONE"; } static int draw_container(cairo_t *cairo, struct sway_container *container, |