discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a366561336d2ed218a5304b2ee3937ae2732c440
commit a366561336d2ed218a5304b2ee3937ae2732c440 Author: Mike Blumenkrantz <zm...@samsung.com> Date: Tue Dec 10 09:22:11 2013 -0500 Revert "ensmallen efm icon event area" This reverts commit b7fb8e7f8d87e1ceb42f40b726aee1873ea61990. --- src/bin/e_fm.c | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index e2c509a..f8812d5 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -4795,26 +4795,14 @@ _e_fm2_icon_label_click(void *data, Evas_Object *obj __UNUSED__, const char *emi static void _e_fm2_icon_position(E_Fm2_Icon *ic) { - Eina_Bool list = _e_fm2_view_mode_get(ic->sd) == E_FM2_VIEW_MODE_LIST; evas_object_move(ic->obj, ic->sd->x + ic->x - ic->sd->pos.x, ic->sd->y + ic->y - ic->sd->pos.y); evas_object_resize(ic->obj, ic->w, ic->h); - if (list) - { - /* only resize vertically for list view */ - evas_object_move(ic->rect, - ic->sd->x + ic->x - ic->sd->pos.x, - ic->sd->y + ic->y - ic->sd->pos.y + (0.1 * ic->h)); - evas_object_resize(ic->rect, ic->w, ic->h * 0.8); - } - else - { - evas_object_move(ic->rect, - ic->sd->x + ic->x - ic->sd->pos.x + (0.1 * ic->w), - ic->sd->y + ic->y - ic->sd->pos.y + (0.1 * ic->h)); - evas_object_resize(ic->rect, ic->w * 0.8, ic->h * 0.8); - } + evas_object_move(ic->rect, + ic->sd->x + ic->x - ic->sd->pos.x, + ic->sd->y + ic->y - ic->sd->pos.y); + evas_object_resize(ic->rect, ic->w, ic->h); } static void --