Fix xwayland wants_floating logic

This commit is contained in:
Ryan Dwyer 2018-10-22 21:51:10 +10:00
parent a918844e52
commit 16ef702645
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ static bool wants_floating(struct sway_view *view) {
struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints;
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_height == size_hints->min_height)) {
return true;