devilhorns pushed a commit to branch master.

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

commit ae7fd6fac07d294de476bee7f9df465b27712914
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Wed Dec 4 11:30:36 2013 +0000

    Fix raster bug report about elm window resize issue (content drawing
    outside the window).
    
    Be sure that the EEs requested geometry gets updated in our
    common_resize function After min/max have been taken into account.
    
    Elm is using ecore_evas_request_geometry_get in it's resize_job code
    (Why...I have no clue lol. Does not seem like a good thing to check).
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 2 ++
 1 file changed, 2 insertions(+)

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 2fcad77..fc3083b 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
@@ -544,6 +544,8 @@ _ecore_evas_wl_common_resize(Ecore_Evas *ee, int w, int h)
      {
         ee->w = orig_w;
         ee->h = orig_h;
+        ee->req.w = orig_w;
+        ee->req.h = orig_h;
 
         if ((ee->rotation == 90) || (ee->rotation == 270))
           {

-- 


Reply via email to