discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5869767355b524f2d85942f246bdc296756302e7
commit 5869767355b524f2d85942f246bdc296756302e7 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri May 12 12:08:32 2017 -0400 ecore-wl2: remove ERR when trying to find the focused window id this can trigger in the case where a selection transfer occurs and no input resource has received an enter (e.g., the window is not focused) @fix --- src/lib/ecore_wl2/ecore_wl2_dnd.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/ecore_wl2/ecore_wl2_dnd.c b/src/lib/ecore_wl2/ecore_wl2_dnd.c index b7a18bb..45e79d3 100644 --- a/src/lib/ecore_wl2/ecore_wl2_dnd.c +++ b/src/lib/ecore_wl2/ecore_wl2_dnd.c @@ -68,9 +68,6 @@ _win_id_get(Ecore_Wl2_Input *input) else if (input->focus.keyboard) win = input->focus.keyboard->id; - if (win == 0) - ERR("Failed to fetch window id"); - return win; } --