mirror of
https://github.com/swaywm/sway
synced 2024-11-18 04:33:59 +01:00
remove alphabetic sorting from sort_workspaces
also add a couple missing spaces to container.c (unrelated)
This commit is contained in:
parent
c6c3a8e758
commit
7df38ce9da
@ -2328,7 +2328,7 @@ static struct cmd_results *cmd_workspace(int argc, char **argv) {
|
||||
if (!(ws=workspace_by_number(argv[1]))) {
|
||||
ws = workspace_create(argv[1]);
|
||||
}
|
||||
}else if (strcasecmp(argv[0], "next") == 0) {
|
||||
} else if (strcasecmp(argv[0], "next") == 0) {
|
||||
ws = workspace_next();
|
||||
} else if (strcasecmp(argv[0], "prev") == 0) {
|
||||
ws = workspace_prev();
|
||||
@ -2343,7 +2343,7 @@ static struct cmd_results *cmd_workspace(int argc, char **argv) {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (!(ws= workspace_by_name(argv[0]))) {
|
||||
if (!(ws = workspace_by_name(argv[0]))) {
|
||||
ws = workspace_create(argv[0]);
|
||||
}
|
||||
}
|
||||
|
@ -193,8 +193,6 @@ int sort_workspace_cmp_qsort(const void *_a, const void *_b) {
|
||||
retval = -1;
|
||||
} else if (isdigit(b->name[0])) {
|
||||
retval = 1;
|
||||
} else {
|
||||
retval = strcmp(a->name, b->name);
|
||||
}
|
||||
|
||||
return retval;
|
||||
|
Loading…
Reference in New Issue
Block a user