sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit d9ed9445de73c138ddda21483c2ee49a73926dd8
parent cdbfc3338bcaef113ef013a8234ad668eea22a3c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 22 Oct 2018 22:12:57 +0200

Merge pull request #2926 from RyanDwyer/fix-xwayland-floating-logic

Fix xwayland wants_floating logic
Diffstat:
Msway/desktop/xwayland.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c @@ -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;