summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2017-05-12 12:08:32 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2017-05-12 12:08:25 -0400
commit5869767355b524f2d85942f246bdc296756302e7 (patch)
tree25248510df9442dfae1d70690b5f47ed24941aae
parent00da1a771a33736c3443116c7183c4dd0e30fe41 (diff)
downloadefl-5869767355b524f2d85942f246bdc296756302e7.tar.gz
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
-rw-r--r--src/lib/ecore_wl2/ecore_wl2_dnd.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2_dnd.c b/src/lib/ecore_wl2/ecore_wl2_dnd.c
index b7a18bb748..45e79d3107 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;
}