diff options
author | Stephen 'Okra' Houston <smhouston88@gmail.com> | 2017-01-10 14:33:03 -0600 |
---|---|---|
committer | Stephen 'Okra' Houston <smhouston88@gmail.com> | 2017-01-10 15:38:37 -0600 |
commit | 3a7509fd3898e8fa966d7c68e689472c9aab687f (patch) | |
tree | 779a9405dee88177059f2ccc43a288874bb9afcd /src | |
parent | 382dc8e3b0b1cdb8155359a4e8a66761b521913d (diff) | |
download | enlightenment-3a7509fd3898e8fa966d7c68e689472c9aab687f.tar.gz |
Revert "luncher: do not add clients twice"
This reverts commit 382dc8e3b0b1cdb8155359a4e8a66761b521913d.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/luncher/bar.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/modules/luncher/bar.c b/src/modules/luncher/bar.c index 80ccd574b5..f3e86bf142 100644 --- a/src/modules/luncher/bar.c +++ b/src/modules/luncher/bar.c @@ -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) { |