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.
This commit is contained in:
Marcel Hollerbach 2017-10-25 13:57:32 +02:00
parent 57ba3318dc
commit f440cc4eb6
1 changed files with 2 additions and 1 deletions

View File

@ -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