mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Added "layout promote" command.
This commit is contained in:
parent
a0aa8d9780
commit
1b87193c3d
3 changed files with 6 additions and 1 deletions
|
@ -76,7 +76,7 @@ int list_seq_find(list_t *list, int compare(const void *item, const void *data),
|
|||
return -1;
|
||||
}
|
||||
|
||||
static void list_swap(list_t *list, int src, int dest) {
|
||||
void list_swap(list_t *list, int src, int dest) {
|
||||
void *tmp = list->items[src];
|
||||
list->items[src] = list->items[dest];
|
||||
list->items[dest] = tmp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue