add missing return in client_is_floating_type()

This causes all Xwayland clients to be treated as floating
This commit is contained in:
Leonardo Hernández Hernández 2022-04-10 21:38:48 -05:00
parent c00697e643
commit b86fcf6504
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 2 additions and 0 deletions

View File

@ -113,6 +113,8 @@ client_is_float_type(Client *c)
&& (size_hints->max_width == size_hints->min_width ||
size_hints->max_height == size_hints->min_height))
return 1;
return 0;
}
#endif