diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-13 17:41:20 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-13 18:09:19 +0900 |
commit | 89733b22f6287f0c9126acc93a2b1dae590ae4dd (patch) | |
tree | 557083c042dae7d3bfecc403bc28dbeee64de94f /src/lib/edje/edje_calc.c | |
parent | 83ea35541ceea5583528b09daf397deecb354b97 (diff) |
efl_gfx_fill: Use Eina.Rectangle for fill (EO)
Diffstat (limited to '')
-rw-r--r-- | src/lib/edje/edje_calc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/edje/edje_calc.c b/src/lib/edje/edje_calc.c index 8c811478b7..9bdedcaa0b 100644 --- a/src/lib/edje/edje_calc.c +++ b/src/lib/edje/edje_calc.c | |||
@@ -3616,7 +3616,7 @@ _edje_proxy_recalc_apply(Edje *ed, Edje_Real_Part *ep, Edje_Calc_Params *p3, Edj | |||
3616 | } | 3616 | } |
3617 | } | 3617 | } |
3618 | 3618 | ||
3619 | efl_gfx_fill_set(ep->object, p3->type.common->fill.x, p3->type.common->fill.y, p3->type.common->fill.w, p3->type.common->fill.h); | 3619 | efl_gfx_fill_set(ep->object, p3->type.common->fill); |
3620 | efl_image_smooth_scale_set(ep->object, p3->smooth); | 3620 | efl_image_smooth_scale_set(ep->object, p3->smooth); |
3621 | evas_object_image_source_visible_set(ep->object, chosen_desc->proxy.source_visible); | 3621 | evas_object_image_source_visible_set(ep->object, chosen_desc->proxy.source_visible); |
3622 | evas_object_image_source_clip_set(ep->object, chosen_desc->proxy.source_clip); | 3622 | evas_object_image_source_clip_set(ep->object, chosen_desc->proxy.source_clip); |
@@ -3656,7 +3656,7 @@ _edje_image_recalc_apply(Edje *ed, Edje_Real_Part *ep, Edje_Calc_Params *p3, Edj | |||
3656 | set->entry->border.scale_by : p3->type.common->spec.image.border_scale_by; | 3656 | set->entry->border.scale_by : p3->type.common->spec.image.border_scale_by; |
3657 | } | 3657 | } |
3658 | 3658 | ||
3659 | efl_gfx_fill_set(ep->object, p3->type.common->fill.x, p3->type.common->fill.y, p3->type.common->fill.w, p3->type.common->fill.h); | 3659 | efl_gfx_fill_set(ep->object, p3->type.common->fill); |
3660 | efl_image_smooth_scale_set(ep->object, p3->smooth); | 3660 | efl_image_smooth_scale_set(ep->object, p3->smooth); |
3661 | if (chosen_desc->image.border.scale) | 3661 | if (chosen_desc->image.border.scale) |
3662 | { | 3662 | { |