add missing return in client_is_floating_type()
This causes all Xwayland clients to be treated as floating
This commit is contained in:
parent
c00697e643
commit
b86fcf6504
1 changed files with 2 additions and 0 deletions
2
client.h
2
client.h
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue