jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=dcaa66812e0cad708461fef589225cefb7374cd7
commit dcaa66812e0cad708461fef589225cefb7374cd7 Author: Jean-Philippe Andre <[email protected]> Date: Fri Dec 2 14:09:02 2016 +0900 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 --- src/lib/elementary/efl_ui_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 4542e5f..3b1129a 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -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 { --
