Ephoto: Clear the grid selection when clicking in the empty space.

This commit is contained in:
Stephen okra Houston 2015-12-15 12:44:54 -06:00
parent 598e33f646
commit d5cb519422
1 changed files with 14 additions and 0 deletions

View File

@ -2854,6 +2854,20 @@ _grid_mouse_up_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
tb->last_sel = item;
}
}
if (info->button == 1 && !item)
{
Eina_List *sel = eina_list_clone(selected);
Eina_List *node;
Elm_Object_Item *it;
if (eina_list_count(sel) > 0)
{
EINA_LIST_FOREACH(sel, node, it)
{
elm_gengrid_item_selected_set(it, EINA_FALSE);
}
eina_list_free(sel);
}
}
if (info->button != 3)
return;