seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=dffaefc3c37c0c37b4d264657ee22a7b6ec0f3f3
commit dffaefc3c37c0c37b4d264657ee22a7b6ec0f3f3 Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Fri Aug 22 03:41:52 2014 +0900 genlist: Unbreak double click smart callback. Fixed a typo in my commit adb976e. --- 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 46662eb..695b344 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -3890,7 +3890,7 @@ _item_mouse_down_cb(void *data, sd->movements = 0; if (_is_no_select(it) || - !elm_widget_item_disabled_get(it)) + elm_widget_item_disabled_get(it)) return; // and finally call the user callbacks. --