From 6e226bfd8eeb952da5408a2a463f0cb07df24ac0 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 19 Aug 2013 09:23:07 +0100 Subject: [PATCH] Fix surface input region miscalculation after resize. NB: Try this Mike. Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index c2ee2dc..9d1321a 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -2753,8 +2753,7 @@ _e_comp_wl_surface_cb_commit(struct wl_client *client EINA_UNUSED, struct wl_res /* update the smart object's input region */ if (ews->obj) e_surface_input_set(ews->obj, rects->x1, rects->y1, - (rects->x2 - rects->x1), - (rects->y2 - rects->y1)); + rects->x2, rects->y2); } /* put any pending frame callbacks into active list */ -- 2.7.4