davemds pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=834960e653975d076b46ce9bd03ebda155df2537

commit 834960e653975d076b46ce9bd03ebda155df2537
Author: Dave Andreoli <[email protected]>
Date:   Mon Dec 29 11:19:21 2014 +0100

    Genlist: do not fire clicked,right while dragging in progress
---
 src/lib/elm_genlist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c
index c4d45d5..0e3f379 100644
--- a/src/lib/elm_genlist.c
+++ b/src/lib/elm_genlist.c
@@ -4659,7 +4659,7 @@ _item_mouse_up_cb(void *data,
    Elm_Gen_Item *it = data;
    Evas_Coord x, y, dx, dy;
 
-   if (ev->button == 3)
+   if ((ev->button == 3) && (!it->dragging))
      {
         evas_object_geometry_get(obj, &x, &y, NULL, NULL);
         dx = it->dx - (ev->canvas.x - x);

-- 


Reply via email to