diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-04-03 14:52:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-03 14:52:20 -0400 |
commit | 7d43a76b4e765eb8072c09cdec3847e877cf65d7 (patch) | |
tree | 030844d9fb13be7814dd760a6ffedbec8f5264cd /sway/container.c | |
parent | ab7570d311d65ff03fd14627ec3157fa37995ced (diff) | |
parent | 2445d279604d7be38c00db60ffde4279a3c75459 (diff) | |
download | sway-7d43a76b4e765eb8072c09cdec3847e877cf65d7.tar.xz |
Merge pull request #1145 from 4e554c4c/marks
Impliment i3-style marks
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c index 707aa4d8..08aa77a8 100644 --- a/sway/container.c +++ b/sway/container.c @@ -61,6 +61,10 @@ static void free_swayc(swayc_t *cont) { } list_free(cont->floating); } + if (cont->marks) { + list_foreach(cont->marks, free); + list_free(cont->marks); + } if (cont->parent) { remove_child(cont); } |