aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-06 23:57:57 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-06 23:57:57 +1000
commitcf32d5d7766a14ad1fbb236371be3e6b733c4f8a (patch)
tree3c640d75acc38a1d55cee986b5a405c7e33ecdd6 /sway/desktop/xwayland.c
parentMerge pull request #2592 from RyanDwyer/fix-fullscreen-unmap-focus (diff)
downloadsway-cf32d5d7766a14ad1fbb236371be3e6b733c4f8a.tar.gz
sway-cf32d5d7766a14ad1fbb236371be3e6b733c4f8a.tar.zst
sway-cf32d5d7766a14ad1fbb236371be3e6b733c4f8a.zip
Float views when min == max on either dimension
This fixes pinentry-gtk-2, but might make other views floating which would otherwise be tiled. This patch is more of a trial which could end up becoming a permanent fix.
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 0d192b76..6761b6bc 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -235,8 +235,8 @@ static bool wants_floating(struct sway_view *view) {
235 struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints; 235 struct wlr_xwayland_surface_size_hints *size_hints = surface->size_hints;
236 if (size_hints != NULL && 236 if (size_hints != NULL &&
237 size_hints->min_width != 0 && size_hints->min_height != 0 && 237 size_hints->min_width != 0 && size_hints->min_height != 0 &&
238 size_hints->max_width == size_hints->min_width && 238 (size_hints->max_width == size_hints->min_width ||
239 size_hints->max_height == size_hints->min_height) { 239 size_hints->max_height == size_hints->min_height)) {
240 return true; 240 return true;
241 } 241 }
242 242