aboutsummaryrefslogtreecommitdiff
path: root/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'client.h')
-rw-r--r--client.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/client.h b/client.h
index a7b546a..e0964da 100644
--- a/client.h
+++ b/client.h
@@ -215,8 +215,13 @@ client_min_size(Client *c, int *width, int *height)
if (client_is_x11(c)) {
struct wlr_xwayland_surface_size_hints *size_hints;
size_hints = c->surface.xwayland->size_hints;
- *width = size_hints->min_width;
- *height = size_hints->min_height;
+ if (size_hints) {
+ *width = size_hints->min_width;
+ *height = size_hints->min_height;
+ } else {
+ *width = 0;
+ *height = 0;
+ }
return;
}
#endif