diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-11-01 13:01:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 13:01:15 +0100 |
commit | 8ad06f0ec554da0ded551fc1b83f9cd0b3fa2a27 (patch) | |
tree | 8399de2ba00a8a0dd57f49dfc30455c330500b54 /sway/commands/swap.c | |
parent | 480b03b734e6d1d068859b254d8ace4fb07b2c54 (diff) | |
parent | 9fc736f4e1804b06538191786500f927ba0cda13 (diff) |
Merge pull request #3041 from RyanDwyer/marks-props-to-container
Move view marks properties to container struct
Diffstat (limited to 'sway/commands/swap.c')
-rw-r--r-- | sway/commands/swap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/swap.c b/sway/commands/swap.c index a70a6cdd..23e8d583 100644 --- a/sway/commands/swap.c +++ b/sway/commands/swap.c @@ -159,8 +159,8 @@ static bool test_id(struct sway_container *container, void *id) { } static bool test_mark(struct sway_container *container, void *mark) { - if (container->view && container->view->marks->length) { - return !list_seq_find(container->view->marks, + if (container->marks->length) { + return !list_seq_find(container->marks, (int (*)(const void *, const void *))strcmp, mark); } return false; |