mirror of
https://github.com/swaywm/sway.git
synced 2024-12-29 00:16:22 +01:00
Merge pull request #2755 from RyanDwyer/fix-tiling-criteria
Fix tiling criteria
This commit is contained in:
commit
f74829d390
1 changed files with 2 additions and 0 deletions
|
@ -339,6 +339,8 @@ static enum criteria_token token_from_name(char *name) {
|
|||
return T_URGENT;
|
||||
} else if (strcmp(name, "workspace") == 0) {
|
||||
return T_WORKSPACE;
|
||||
} else if (strcmp(name, "tiling") == 0) {
|
||||
return T_TILING;
|
||||
} else if (strcmp(name, "floating") == 0) {
|
||||
return T_FLOATING;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue