Oh.. you lost Taehwan's commit message.
Maybe we need to fix this?

Daniel Juyung Seo (SeoZ)

On Tue, Feb 26, 2013 at 1:42 PM, Tae-Hwan Kim - Enlightenment Git
<no-re...@enlightenment.org> wrote:
> raster pushed a commit to branch master.
>
> commit 8f7164e9dc917a4afd9f90cdd4f9a454b6fe5593
> Author: Tae-Hwan Kim <the81....@samsung.com>
> Date:   Tue Feb 26 13:42:28 2013 +0900
>
>     push bluezery's patch. approved.
> ---
>  src/lib/elm_genlist.c | 18 ++++++++++++++++--
>  1 file changed, 16 insertions(+), 2 deletions(-)
>
> diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
> index 6cc9c78..bfcb67b 100644
> --- a/src/lib/elm_genlist.c
> +++ b/src/lib/elm_genlist.c
> @@ -5033,7 +5033,14 @@ static Evas_Object *
>  _item_content_get_hook(Elm_Gen_Item *it,
>                         const char *part)
>  {
> -   return edje_object_part_swallow_get(VIEW(it), part);
> +   Evas_Object *ret = NULL;
> +   if (it->deco_all_view)
> +     ret = edje_object_part_swallow_get(it->deco_all_view, part);
> +   else if (it->decorate_it_set)
> +     ret = edje_object_part_swallow_get(it->item->deco_it_view, part);
> +   if (!ret)
> +     ret = edje_object_part_swallow_get(VIEW(it), part);
> +   return ret;
>  }
>
>  static const char *
> @@ -5041,7 +5048,14 @@ _item_text_get_hook(Elm_Gen_Item *it,
>                      const char *part)
>  {
>     if (!it->itc->func.text_get) return NULL;
> -   return edje_object_part_text_get(VIEW(it), part);
> +   const char *ret = NULL;
> +   if (it->deco_all_view)
> +     ret = edje_object_part_text_get(it->deco_all_view, part);
> +   else if (it->decorate_it_set)
> +     ret = edje_object_part_text_get(it->item->deco_it_view, part);
> +   if (!ret)
> +     ret = edje_object_part_text_get(VIEW(it), part);
> +   return ret;
>  }
>
>  static void
>
> --
>
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_feb

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to