diff options
author | Marcel Hollerbach <marcel@osg.samsung.com> | 2017-10-25 13:57:32 +0200 |
---|---|---|
committer | Marcel Hollerbach <marcel@osg.samsung.com> | 2017-10-25 14:36:13 +0200 |
commit | f440cc4eb6edbda0a0093df785ab1bc02ee21835 (patch) | |
tree | c16f1ed4ab6b4ebd1605224517de3871025327e9 /src/lib/elementary | |
parent | 57ba3318dca35f51a5e2a89367677100bf7b9e49 (diff) |
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.
Diffstat (limited to 'src/lib/elementary')
-rw-r--r-- | src/lib/elementary/efl_ui_multibuttonentry.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
984 | // ACCESS | 984 | // ACCESS |
985 | if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) return EINA_FALSE; | 985 | if (_elm_config->access_mode == ELM_ACCESS_MODE_ON) return EINA_FALSE; |
986 | 986 | ||
987 | return EINA_TRUE; | 987 | //lets stop eating all events |
988 | return EINA_FALSE; | ||
988 | } | 989 | } |
989 | 990 | ||
990 | EOLIAN static void | 991 | EOLIAN static void |