sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 00f6e179cd22ea046a25eb8a099f434de9e8fe57
parent 02de2a6f65c189bf563cca5b4d3fbc11826ea7f7
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Sat, 26 May 2018 09:23:12 +1000

Add L_FLOATING back to debug tree

Diffstat:
Msway/debug-tree.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 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,