Thanks. ☺
On Aug 24, 2015 10:34 AM, "Jaehwan Kim" <greensu...@naver.com> wrote:

>
> Hello
>
> I added two commits about this fixing.
>
> Thanks
>
> -----Original Message-----
> From: "Amitesh Singh"&lt;singh.amit...@gmail.com&gt;
> To: "Enlightenment developer list"&
> lt;enlightenment-devel@lists.sourceforge.net&gt;;
> Cc: &lt;jae.hwan....@samsung.com&gt;; &lt;amitesh...@samsung.com&gt;;
> Sent: 2015-08-24 (월) 13:48:14
> Subject: Re: [E-devel] [EGIT] [core/elementary] master 01/01: scroller:
> fix the misstake. change &amp;&amp; -&gt; ||
>
> Hello
>
> Please port this patch to elementary - 1.15 branch too.
>
> Thanks
> Amitesh
> On Aug 24, 2015 10:14 AM, "Jaehwan Kim" &lt;jae.hwan....@samsung.com&gt;
> wrote:
>
> &gt; jaehwan pushed a commit to branch master.
> &gt;
> &gt;
> &gt;
> http://git.enlightenment.org/core/elementary.git/commit/?id=a920d06b7813a6eb0fc93a39cd9471eb9cbfa70e
> &gt;
> &gt; commit a920d06b7813a6eb0fc93a39cd9471eb9cbfa70e
> &gt; Author: Jaehwan Kim &lt;jae.hwan....@samsung.com&gt;
> &gt; Date:   Mon Aug 24 13:38:08 2015 +0900
> &gt;
> &gt;     scroller: fix the misstake. change &amp;&amp; -&gt; ||
> &gt;
> &gt;     @fix
> &gt; ---
> &gt;  src/lib/elm_scroller.c | 8 ++++----
> &gt;  1 file changed, 4 insertions(+), 4 deletions(-)
> &gt;
> &gt; diff --git a/src/lib/elm_scroller.c b/src/lib/elm_scroller.c
> &gt; index 5243f8a..4d45fd4 100644
> &gt; --- a/src/lib/elm_scroller.c
> &gt; +++ b/src/lib/elm_scroller.c
> &gt; @@ -120,10 +120,10 @@ _key_action_move(Evas_Object *obj, const char
> &gt; *params)
> &gt;     if ((current_focus == obj) ||
> &gt;         ((!ELM_RECTS_INTERSECT
> &gt;           (x, y, v_w, v_h, (f_x - c_x), (f_y - c_y), f_w, f_h))
> &amp;&amp;
> &gt; -        (!strcmp(dir, "left") &amp;&amp; (f_x &gt; v_x)) &amp;&amp;
> &gt; -        (!strcmp(dir, "right") &amp;&amp; (f_x + f_w &lt; v_x +
> v_w)) &amp;&amp;
> &gt; -        (!strcmp(dir, "up") &amp;&amp; (f_y &gt; v_y)) &amp;&amp;
> &gt; -        (!strcmp(dir, "down") &amp;&amp; (f_y + f_h &lt; v_y +
> v_h))))
> &gt; +        ((!strcmp(dir, "left") &amp;&amp; (f_x &gt; v_x)) ||
> &gt; +        (!strcmp(dir, "right") &amp;&amp; (f_x + f_w &lt; v_x +
> v_w)) ||
> &gt; +        (!strcmp(dir, "up") &amp;&amp; (f_y &gt; v_y)) ||
> &gt; +        (!strcmp(dir, "down") &amp;&amp; (f_y + f_h &lt; v_y +
> v_h)))))
> &gt;       {
> &gt;          Eina_List *l;
> &gt;          Evas_Object *cur;
> &gt;
> &gt; --
> &gt;
> &gt;
> &gt;
>
> ------------------------------------------------------------------------------
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
> ------------------------------------------------------------------------------
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
------------------------------------------------------------------------------
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to