bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f440cc4eb6edbda0a0093df785ab1bc02ee21835

commit f440cc4eb6edbda0a0093df785ab1bc02ee21835
Author: Marcel Hollerbach <mar...@osg.samsung.com>
Date:   Wed Oct 25 13:57:32 2017 +0200

    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 0456532b63..b1abc2d00d 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

-- 


Reply via email to