rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=0a738af6ddaaa029668e31226e97a27488e0af44

commit 0a738af6ddaaa029668e31226e97a27488e0af44
Author: Vyacheslav Reutskiy <v.reuts...@samsung.com>
Date:   Wed Jul 22 13:49:55 2015 +0300

    Widget list: is possible to click to Class
    
    Delete aggressive check of clicked item, because posible to click on
    Class item
    
    Change-Id: Iad5c825b4881d6dda5df7722c5fd58240573fdf0
---
 src/bin/ui/blocks/ui_widget_list.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/ui/blocks/ui_widget_list.c 
b/src/bin/ui/blocks/ui_widget_list.c
index 8e90df9..5bd568c 100644
--- a/src/bin/ui/blocks/ui_widget_list.c
+++ b/src/bin/ui/blocks/ui_widget_list.c
@@ -714,9 +714,9 @@ _on_style_clicked_double(void *data,
    assert(nf_widgets != NULL);
    assert(nf_layouts != NULL);
    assert(_style != NULL);
-   assert((_style->__type == STYLE) ||
-          (_style->__type == LAYOUT));
 
+   if ((_style->__type != STYLE) && (_style->__type != LAYOUT))
+     return;
    if (nf == nf_widgets)
      {
         naviframe_items = elm_naviframe_items_get(nf_layouts);

-- 


Reply via email to