From 58df59aaf498dc55be4ac6a7800abc9008afa5ea Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Fri, 12 Apr 2013 07:41:57 +0100 Subject: [PATCH] Add width & height to the grab structure. Add edges (for resize) to the grab structure. Signed-off-by: Chris Michael --- src/bin/e_comp_wl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.h b/src/bin/e_comp_wl.h index 73287d8c2..825185404 100644 --- a/src/bin/e_comp_wl.h +++ b/src/bin/e_comp_wl.h @@ -165,7 +165,8 @@ struct _E_Wayland_Shell_Grab { struct wl_pointer_grab grab; struct wl_pointer *pointer; - Evas_Coord x, y; + Evas_Coord x, y, w, h; + unsigned int edges; E_Wayland_Shell_Surface *shell_surface; struct wl_listener shell_surface_destroy;