|
From: Enlightenment C. <no...@cv...> - 2007-04-09 23:12:28
|
Enlightenment CVS committal
Author : raster
Project : e17
Module : apps/e
Dir : e17/apps/e/src/modules/ibar
Modified Files:
e_mod_main.c
Log Message:
during startup ibar keeps re-filling all icons in a tight loop (though still
looping ecore) because efreet's idler keeps scanning icons and issuing change
events for everything. this slows things down a lot and causes ibar to be
inactive for a few seconds because icons are being deleted and re-created. i
have "paused" e_order updates until the first list change - that means the
idle scan cache fetch is over and operation is "normal" again - issue a big
change then anyway and so be up to date, but only on scan completion.
===================================================================
RCS file: /cvs/e/e17/apps/e/src/modules/ibar/e_mod_main.c,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -3 -r1.175 -r1.176
--- e_mod_main.c 6 Apr 2007 03:54:48 -0000 1.175
+++ e_mod_main.c 9 Apr 2007 23:12:24 -0000 1.176
@@ -451,7 +451,7 @@
{
Evas_List *l;
Evas_List *i;
-
+
for (l = ibar_config->instances; l; l = l->next)
{
Instance *inst;
|