mirror of
https://github.com/swaywm/sway.git
synced 2024-11-14 06:24:20 +01:00
Fix xwayland wants_floating logic
This commit is contained in:
parent
a918844e52
commit
16ef702645
@ -239,7 +239,7 @@ static bool wants_floating(struct sway_view *view) {
|
|||||||
|
|
||||||
struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints;
|
struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints;
|
||||||
if (size_hints != NULL &&
|
if (size_hints != NULL &&
|
||||||
size_hints->min_width != 0 && size_hints->min_height != 0 &&
|
size_hints->min_width > 0 && size_hints->min_height > 0 &&
|
||||||
(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 true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user