mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
Merge 7d4864dd66
into ab455bbada
This commit is contained in:
commit
8125a827ec
1 changed files with 2 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
#include "sway/tree/workspace.h"
|
||||
#include "sway/server.h"
|
||||
#include "log.h"
|
||||
#include "stringop.h"
|
||||
#include "util.h"
|
||||
|
||||
enum wlr_direction opposite_direction(enum wlr_direction d) {
|
||||
|
@ -391,7 +392,7 @@ static int sort_workspace_cmp_qsort(const void *_a, const void *_b) {
|
|||
} else if (isdigit(b->name[0])) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
return lenient_strcmp(a->name, b->name);
|
||||
}
|
||||
|
||||
void output_sort_workspaces(struct sway_output *output) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue