devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c53053f2aac76d8975e1ba3391a3e59be90fb402

commit c53053f2aac76d8975e1ba3391a3e59be90fb402
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Fri Apr 11 07:21:20 2014 +0100

    ecore-evas-wl: Ooops, Fix opaque & input regions being set to incorrect 
values
    
    @fix: As it turns out, we cannot just blindly set the regions here
    during resize. Elementary apps will set the opaque region to account
    for any edj frames, and having the region_set calls Here was
    causing issues....
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c 
b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
index e1ef5a6..8081b9f 100644
--- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
+++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
@@ -739,11 +739,7 @@ _ecore_evas_wl_common_resize(Ecore_Evas *ee, int w, int h)
           evas_object_resize(wdata->frame, w, h);
 
         if (wdata->win)
-          {
-             ecore_wl_window_update_size(wdata->win, w, h);
-             ecore_wl_window_input_region_set(wdata->win, 0, 0, w, h);
-             ecore_wl_window_opaque_region_set(wdata->win, 0, 0, w, h);
-          }
+          ecore_wl_window_update_size(wdata->win, w, h);
 
         if (ee->func.fn_resize) ee->func.fn_resize(ee);
      }

-- 


Reply via email to