diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2018-07-04 18:50:13 +0900 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2018-07-05 08:13:10 +0900 |
commit | ffbe91c245ae09bc94f31556cb4104c5957aacef (patch) | |
tree | 0d8d021cc129875da9e20e5924355fb9b71a37fb /sway/tree | |
parent | ffe9de6e24b451ba7885bc52c78fd676598bf7cd (diff) |
container_free: free formatted title
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/container.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 3614d4e7..9093feba 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -151,6 +151,7 @@ void container_free(struct sway_container *cont) { return; } free(cont->name); + free(cont->formatted_title); wlr_texture_destroy(cont->title_focused); wlr_texture_destroy(cont->title_focused_inactive); wlr_texture_destroy(cont->title_unfocused); |