From 74fd8a674ad7d7be95685fcde3d3d7f743cd26fe Mon Sep 17 00:00:00 2001 From: Jiyoun Park Date: Sat, 6 Jan 2018 15:41:56 +0900 Subject: [PATCH] efl_ui_win: disable pointer window in wayland backend. Currently, if efl_ui_win create two windows, device info was changed during the evas event creation. to get the binary which touch work well, we disable pointer window feature temporarily. this patch should be reverted. --- src/lib/elementary/efl_ui_win.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 6fad5c9..99eea62 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -6029,6 +6029,8 @@ _elm_win_finalize_internal(Eo *obj, Efl_Ui_Win_Data *sd, const char *name, Efl_U _elm_win_apply_alpha(obj, sd); #ifdef HAVE_ELEMENTARY_WL2 +//TIZEN_ONLY(20180106): disable pointer window +/* if ((type != ELM_WIN_FAKE) && (type != ELM_WIN_INLINED_IMAGE)) { if ((engine) && @@ -6051,6 +6053,8 @@ _elm_win_finalize_internal(Eo *obj, Efl_Ui_Win_Data *sd, const char *name, Efl_U ECORE_WL2_WINDOW_TYPE_NONE); } } +*/ +// #endif /* do not append to list; all windows render as black rects */ -- 2.7.4