devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=257b4f0af8df8764e49825da718f557b59c77b1c
commit 257b4f0af8df8764e49825da718f557b59c77b1c Author: Chris Michael <cp.mich...@samsung.com> Date: Thu Oct 27 13:21:23 2016 -0400 elementary: Don't create pointer canvas for inlined_image As we don't need a pointer or pointer canvas for ELM_WIN_INLINED_IMAGE, add missing type check and skip creating pointer canvas there. Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- 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 06e652c..cc3bd9d 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -4814,7 +4814,7 @@ _elm_win_finalize_internal(Eo *obj, Efl_Ui_Win_Data *sd, const char *name, Elm_W } #ifdef HAVE_ELEMENTARY_WL2 - if (type != ELM_WIN_FAKE) + if ((type != ELM_WIN_FAKE) && (type != ELM_WIN_INLINED_IMAGE)) { if ((engine) && ((!strcmp(engine, ELM_WAYLAND_SHM) || --