From 02144d17e9282719d31bbbb84678c889a002396a Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 19 Nov 2013 19:01:03 -0500 Subject: [PATCH] wayland-surface: Fill in the maximized/fullscreen hints to the configure event --- src/wayland/meta-wayland-surface.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wayland/meta-wayland-surface.c b/src/wayland/meta-wayland-surface.c index 0f318e273..317f4fb75 100644 --- a/src/wayland/meta-wayland-surface.c +++ b/src/wayland/meta-wayland-surface.c @@ -927,7 +927,8 @@ meta_wayland_surface_configure_notify (MetaWaylandSurface *surface, if (surface->xdg_surface.resource) xdg_surface_send_configure (surface->xdg_surface.resource, edges, new_width, new_height, - 0, 0 /* XXX: support this */); + meta_window_get_maximized (surface->window), + meta_window_is_fullscreen (surface->window)); } void