diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-05-28 08:35:58 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-05-28 08:35:58 -0500 |
| commit | 22c9bfa2c340ce74178b82edc6da267fd7cc222f (patch) | |
| tree | d43477a8ead345a7ca3d2f40c4335ec44352ec65 | |
| parent | 1ae9bd16307899db9a54961d79f51b93b6d3bdde (diff) | |
remove alphabetic sorting from sort_workspaces
also add a couple missing spaces to container.c (unrelated)
| -rw-r--r-- | sway/commands.c | 4 | ||||
| -rw-r--r-- | sway/output.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sway/commands.c b/sway/commands.c index fbdb5fb8..487b6a8e 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -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]); } } diff --git a/sway/output.c b/sway/output.c index 046dee8c..53b24232 100644 --- a/sway/output.c +++ b/sway/output.c @@ -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; |
