Revert "restack event rect for efm...always"

This reverts commit 5bacb5dfc3.
This commit is contained in:
Mike Blumenkrantz 2013-12-10 09:23:18 -05:00
parent ef1b4e3d9d
commit a61786b7a7
1 changed files with 2 additions and 9 deletions

View File

@ -4892,10 +4892,7 @@ _e_fm2_icon_realize(E_Fm2_Icon *ic)
edje_object_signal_emit(ic->obj_icon, "e,state,selected", "e");
selectraise = edje_object_data_get(ic->obj, "selectraise");
if ((selectraise) && (!strcmp(selectraise, "on")))
{
evas_object_stack_below(ic->obj, ic->sd->drop);
evas_object_stack_above(ic->rect, ic->obj);
}
evas_object_stack_below(ic->obj, ic->sd->drop);
}
if (ic->info.removable)
@ -5060,7 +5057,6 @@ _e_fm2_icon_select(E_Fm2_Icon *ic)
selectraise = edje_object_data_get(ic->obj, "selectraise");
if ((selectraise) && (!strcmp(selectraise, "on")))
evas_object_stack_below(ic->obj, ic->sd->drop);
evas_object_stack_above(ic->rect, ic->obj);
}
}
@ -5088,10 +5084,7 @@ _e_fm2_icon_deselect(E_Fm2_Icon *ic)
if ((selectraise) && (!strcmp(selectraise, "on")))
{
if ((stacking) && (!strcmp(stacking, "below")))
{
evas_object_stack_above(ic->obj, ic->sd->underlay);
evas_object_stack_above(ic->rect, ic->obj);
}
evas_object_stack_above(ic->obj, ic->sd->underlay);
}
}
}