win: Fix layout issue in E internal windows (WL)

This is an attempt at fixing internal windows in E Wayland,
where the framespace geometry was not taken into account at
render time. Tested in a VM.

Thanks @derekf for the report.

See https://www.enlightenment.org/ss/e-584083fb03f617.08713956.jpg
This commit is contained in:
Jean-Philippe Andre 2016-12-02 14:09:02 +09:00
parent 8c870848b0
commit dcaa66812e
1 changed files with 1 additions and 1 deletions

View File

@ -3352,7 +3352,7 @@ _elm_win_resize_objects_eval(Evas_Object *obj)
if (h < minh) h = minh;
if (w > maxw) w = maxw;
if (h > maxh) h = maxh;
if ((w == ow) && (h == oh)) return;
//if ((w == ow) && (h == oh)) return;
if (sd->img_obj) evas_object_resize(obj, w, h);
else
{