remove alphabetic sorting from sort_workspaces

also add a couple missing spaces to container.c (unrelated)
master
Zandr Martin 9 years ago
parent c6c3a8e758
commit 7df38ce9da

@ -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…
Cancel
Save