cedric pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5246d52d7295c60a3f486c12a36c83d3d63cbba7
commit 5246d52d7295c60a3f486c12a36c83d3d63cbba7 Author: Cedric BAIL <[email protected]> Date: Sat Jun 7 18:44:25 2014 +0200 bg: remove useless and wrong size hint. --- src/bin/e_bg.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bin/e_bg.c b/src/bin/e_bg.c index e47d900..85c3b13 100644 --- a/src/bin/e_bg.c +++ b/src/bin/e_bg.c @@ -276,12 +276,8 @@ e_bg_zone_update(E_Zone *zone, E_Bg_Transition transition) if (transition != E_BG_TRANSITION_NONE) { - evas_object_size_hint_max_set(zone->prev_bg_object, 65536, 65536); - evas_object_size_hint_min_set(zone->prev_bg_object, 0, 0); edje_object_part_swallow(zone->transition_object, "e.swallow.bg.old", zone->prev_bg_object); - evas_object_size_hint_max_set(zone->bg_object, 65536, 65536); - evas_object_size_hint_min_set(zone->bg_object, 0, 0); edje_object_part_swallow(zone->transition_object, "e.swallow.bg.new", zone->bg_object); edje_object_signal_emit(zone->transition_object, "e,action,start", "e"); --
