Revert "luncher: do not add clients twice"

This reverts commit e34d1aaba9.
This commit is contained in:
Stephen 'Okra' Houston 2017-01-10 13:54:51 -06:00
parent ecfe4fd289
commit a918738e65
1 changed files with 2 additions and 8 deletions

View File

@ -784,16 +784,10 @@ _bar_icon_preview_show(void *data)
EINA_LIST_FOREACH(ic->execs, l, ex)
{
EINA_LIST_FOREACH(ex->clients, ll, ec)
{
if (!eina_list_data_find(clients, ec))
clients = eina_list_append(clients, ec);
}
}
EINA_LIST_FOREACH(ic->clients, l, ec)
{
if (!eina_list_data_find(clients, ec))
clients = eina_list_append(clients, ec);
}
EINA_LIST_FOREACH(ic->clients, l, ec)
clients = eina_list_append(clients, ec);
EINA_LIST_FREE(clients, ec)
{