mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Move floating windows to front when focused
This commit is contained in:
parent
0f14abf512
commit
15dc5286e2
3 changed files with 25 additions and 0 deletions
|
@ -24,4 +24,6 @@ int list_seq_find(list_t *list, int compare(const void *item, const void *cmp_to
|
|||
void list_stable_sort(list_t *list, int compare(const void *a, const void *b));
|
||||
// swap two elements in a list
|
||||
void list_swap(list_t *list, int src, int dest);
|
||||
// move item to end of list
|
||||
void list_move_to_end(list_t *list, void *item);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue