diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-18 10:29:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-18 10:29:46 -0400 |
commit | 744724b3cb28c2ee9d265dcbf78b1cbf2b2e3fef (patch) | |
tree | 7a5ebeae1d5e15f047f09698978fa84f61756faa /sway/commands/unmark.c | |
parent | d4a32800d5eb938a769d7802b23f4a0f43cadaef (diff) | |
parent | d6cd79c342495738fc23fbfbf19a01e73cdc42dc (diff) | |
download | sway-744724b3cb28c2ee9d265dcbf78b1cbf2b2e3fef.tar.xz |
Merge pull request #2473 from RyanDwyer/iterators-per-type
Implement iterators per container type
Diffstat (limited to 'sway/commands/unmark.c')
-rw-r--r-- | sway/commands/unmark.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/commands/unmark.c b/sway/commands/unmark.c index 44ceccee..c183785b 100644 --- a/sway/commands/unmark.c +++ b/sway/commands/unmark.c @@ -52,8 +52,7 @@ struct cmd_results *cmd_unmark(int argc, char **argv) { view_find_and_unmark(mark); } else { // Remove all marks from all views - container_for_each_descendant(&root_container, - remove_all_marks_iterator, NULL); + root_for_each_container(remove_all_marks_iterator, NULL); } free(mark); |