discomfitor pushed a commit to branch enlightenment-0.18. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5258dbe53a74d34bc4465922a92405a9aa592e55
commit 5258dbe53a74d34bc4465922a92405a9aa592e55 Author: Mike Blumenkrantz <zm...@samsung.com> Date: Fri Feb 14 15:59:51 2014 -0500 break when finding a non-skip new ibar exec --- src/modules/ibar/e_mod_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index ece5960..d17d5ef 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -2349,7 +2349,10 @@ _ibar_cb_exec_new(void *d EINA_UNUSED, int t EINA_UNUSED, E_Exec_Instance *exe) if (!exe->desktop->icon) return ECORE_CALLBACK_RENEW; EINA_LIST_FOREACH(exe->borders, l, bd) if (!bd->client.netwm.state.skip_taskbar) - skip = EINA_FALSE; + { + skip = EINA_FALSE; + break; + } EINA_LIST_FOREACH(ibars, l, b) { IBar_Icon *ic; --