1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-02 10:46:29 +02:00

Parse floating criteria

This commit is contained in:
Ragnis Armus 2018-09-30 19:59:32 +03:00
parent e6a52ae387
commit 1bd695ffd2

View File

@ -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, "floating") == 0) {
return T_FLOATING;
}
return T_INVALID;
}