sway

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

commit 9d1cbd77aca72ca72eaba5056de5805b14f004c1
parent fa004dd0d78b922b75a6cc9c970824d18aa4e4aa
Author: Tony Crisci <tony@dubstepdish.com>
Date:   Tue,  3 Apr 2018 23:59:44 -0400

simplify container close

Diffstat:
Msway/tree/container.c | 14+++-----------
1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/sway/tree/container.c b/sway/tree/container.c @@ -294,18 +294,10 @@ struct sway_container *container_close(struct sway_container *con) { struct sway_container *parent = con->parent; - switch (con->type) { - case C_TYPES: - case C_ROOT: - case C_OUTPUT: - case C_WORKSPACE: - case C_CONTAINER: - container_for_each_descendant_dfs(con, container_close_func, NULL); - break; - case C_VIEW: + if (con->type == C_VIEW) { view_close(con->sway_view); - break; - + } else { + container_for_each_descendant_dfs(con, container_close_func, NULL); } return parent;