From f440cc4eb6edbda0a0093df785ab1bc02ee21835 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Wed, 25 Oct 2017 13:57:32 +0200 Subject: [PATCH] elm_multibuttonentry: do not eat all the events I have no idea why it was doing that, but that ends up eating all the events, not propagating them up to the parent ... If someone has a idea why it was like that, feel free to notify. --- src/lib/elementary/efl_ui_multibuttonentry.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_multibuttonentry.c b/src/lib/elementary/efl_ui_multibuttonentry.c index 0456532..b1abc2d 100644 --- a/src/lib/elementary/efl_ui_multibuttonentry.c +++ b/src/lib/elementary/efl_ui_multibuttonentry.c @@ -984,7 +984,8 @@ _efl_ui_multibuttonentry_elm_widget_widget_event(Eo *obj EINA_UNUSED, Efl_Ui_Mul // ACCESS if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) return EINA_FALSE; - return EINA_TRUE; + //lets stop eating all events + return EINA_FALSE; } EOLIAN static void -- 2.7.4