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.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-12-04 11:30:36 +00:00
parent 231790c7cb
commit ae7fd6fac0
1 changed files with 2 additions and 0 deletions

View File

@ -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))
{