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
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_width == size_hints->min_width ||
|
||||||
size_hints->max_height == size_hints->min_height))
|
size_hints->max_height == size_hints->min_height))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user