mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
cmd_workspace: Don't fill up config->workspace_outputs with duplicates.
This also fixes a bug where issuing a new "workspace a output b" command for an already assigned workspace would not work (the old config would be found first and used instead).
This commit is contained in:
parent
d0af224e6d
commit
5531dbe1b2
4 changed files with 19 additions and 3 deletions
|
@ -54,10 +54,10 @@ void list_sort(list_t *list, int compare(const void *left, const void *right)) {
|
|||
qsort(list->items, list->length, sizeof(void *), compare);
|
||||
}
|
||||
|
||||
int list_seq_find(list_t *list, int (*cmp)(const void *item, const void *data), const void *data) {
|
||||
int list_seq_find(list_t *list, int compare(const void *item, const void *data), const void *data) {
|
||||
for (int i = 0; i < list->length; i++) {
|
||||
void *item = list->items[i];
|
||||
if ((cmp)(item, data) == 0) {
|
||||
if (compare(item, data) == 0) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue