aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-10-22 22:12:57 +0200
committerLibravatar GitHub <noreply@github.com>2018-10-22 22:12:57 +0200
commitd9ed9445de73c138ddda21483c2ee49a73926dd8 (patch)
tree8f61608440a5737d9317089a73986a39561d4560
parentMerge pull request #2924 from RyanDwyer/fix-qt-menu-crash (diff)
parentFix xwayland wants_floating logic (diff)
downloadsway-d9ed9445de73c138ddda21483c2ee49a73926dd8.tar.gz
sway-d9ed9445de73c138ddda21483c2ee49a73926dd8.tar.zst
sway-d9ed9445de73c138ddda21483c2ee49a73926dd8.zip
Merge pull request #2926 from RyanDwyer/fix-xwayland-floating-logic
Fix xwayland wants_floating logic
-rw-r--r--sway/desktop/xwayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index b8ac8434..5305ce12 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -239,7 +239,7 @@ static bool wants_floating(struct sway_view *view) {
239 239
240 struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints; 240 struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints;
241 if (size_hints != NULL && 241 if (size_hints != NULL &&
242 size_hints->min_width != 0 && size_hints->min_height != 0 && 242 size_hints->min_width > 0 && size_hints->min_height > 0 &&
243 (size_hints->max_width == size_hints->min_width || 243 (size_hints->max_width == size_hints->min_width ||
244 size_hints->max_height == size_hints->min_height)) { 244 size_hints->max_height == size_hints->min_height)) {
245 return true; 245 return true;