From a98ba49fbcce8bb317f4c534591bc74c5d8746f5 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 1 Aug 2012 12:13:21 +0000 Subject: [PATCH] right clicking anywhere on the efm navbar now pops up the gadcon menu SVN revision: 74733 --- src/modules/fileman/e_fwin_nav.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/fileman/e_fwin_nav.c b/src/modules/fileman/e_fwin_nav.c index 5c68dc4fc..c86913cd5 100644 --- a/src/modules/fileman/e_fwin_nav.c +++ b/src/modules/fileman/e_fwin_nav.c @@ -138,6 +138,7 @@ _gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style) evas_object_show(inst->o_base); inst->o_scroll = e_scrollframe_add(gc->evas); + evas_object_repeat_events_set(inst->o_scroll, EINA_TRUE); e_scrollframe_custom_theme_set(inst->o_scroll, "base/theme/modules/efm_navigation", "modules/efm_navigation/pathbar_scrollframe"); @@ -149,6 +150,7 @@ _gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style) evas_object_show(inst->o_scroll); inst->o_box = e_box_add(gc->evas); + evas_object_repeat_events_set(inst->o_box, EINA_TRUE); e_box_orientation_set(inst->o_box, 1); e_box_homogenous_set(inst->o_box, 0); e_scrollframe_child_set(inst->o_scroll, inst->o_box);