diff options
author | Ryan Dwyer <[email protected]> | 2018-05-15 23:29:54 +1000 |
---|---|---|
committer | Ryan Dwyer <[email protected]> | 2018-05-17 08:29:14 +1000 |
commit | ebb0d051db2f73fd13a4e844a51e70f09703372a (patch) | |
tree | ba0248bf61b783299e8dea938a1ae90299fd62f4 /sway/tree/container.c | |
parent | b1645fb352748398783981ecccad0f42e285b6bf (diff) |
Fix many border opacity issues
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 47ba88a9..e47338e7 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -123,13 +123,12 @@ static void _container_destroy(struct sway_container *cont) { if (cont->name) { free(cont->name); } - if (cont->title_focused) { - // If one is set then all of these are set - wlr_texture_destroy(cont->title_focused); - wlr_texture_destroy(cont->title_focused_inactive); - wlr_texture_destroy(cont->title_unfocused); - wlr_texture_destroy(cont->title_urgent); - } + + wlr_texture_destroy(cont->title_focused); + wlr_texture_destroy(cont->title_focused_inactive); + wlr_texture_destroy(cont->title_unfocused); + wlr_texture_destroy(cont->title_urgent); + list_free(cont->children); cont->children = NULL; free(cont); |