summaryrefslogtreecommitdiff
path: root/sway/tree/root.c
diff options
context:
space:
mode:
authoremersion <[email protected]>2018-08-15 22:11:34 +0100
committerGitHub <[email protected]>2018-08-15 22:11:34 +0100
commit647ace1d6de5abe4c469db2e4e9590e3ef2168b9 (patch)
treee40d92b53c4fefde865b1d23d3c1bcae8ea54c37 /sway/tree/root.c
parentb4887ba154ab0d659c560a21194c8ca43b953632 (diff)
parent701fcafc70f18c6f1982a742019e875beeb258d7 (diff)
Merge pull request #2459 from RyanDwyer/fix-workspace-prev-next
Use list_find in more places and refactor/fix workspace prev_next functions
Diffstat (limited to 'sway/tree/root.c')
-rw-r--r--sway/tree/root.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c
index 79f2194e..a974a461 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -84,11 +84,9 @@ void root_scratchpad_remove_container(struct sway_container *con) {
return;
}
con->scratchpad = false;
- for (int i = 0; i < root_container.sway_root->scratchpad->length; ++i) {
- if (root_container.sway_root->scratchpad->items[i] == con) {
- list_del(root_container.sway_root->scratchpad, i);
- break;
- }
+ int index = list_find(root_container.sway_root->scratchpad, con);
+ if (index != -1) {
+ list_del(root_container.sway_root->scratchpad, index);
}
}